From e36501070151b80408909202343c9861b4d731f7 Mon Sep 17 00:00:00 2001 From: fredkiefer Date: Thu, 14 Feb 2008 19:39:38 +0000 Subject: [PATCH] Correct bug in last win32pbs change. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@26064 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Tools/win32pbs.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 57e4375..99883e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-14 Fred Kiefer + + * Tools/win32pbs.m (-receivedEvent:...forMode:): Don't call NSApp + to terminate the program. + 2008-02-08 Fred Kiefer * Source/art/ARTContext.m (-GSDrawImage:): Hack to allow the diff --git a/Tools/win32pbs.m b/Tools/win32pbs.m index 0b7dede..b03799a 100755 --- a/Tools/win32pbs.m +++ b/Tools/win32pbs.m @@ -312,7 +312,7 @@ LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg, if (m->message == WM_QUIT) { - [NSApp terminate: nil]; + //[NSApp terminate: nil]; // Exit the program return; }