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; }