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
This commit is contained in:
Fred Kiefer 2008-02-14 19:39:38 +00:00
parent 445e2ea5ba
commit 6a9f0cf8d9
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-02-14 Fred Kiefer <FredKiefer@gmx.de>
* Tools/win32pbs.m (-receivedEvent:...forMode:): Don't call NSApp
to terminate the program.
2008-02-08 Fred Kiefer <FredKiefer@gmx.de>
* Source/art/ARTContext.m (-GSDrawImage:): Hack to allow the

View file

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