diff src/video/quartz/SDL_QuartzWindow.m @ 58:bd6b0a910a65

* Removed fullscreen menu option from the "Window" menu * Updated the BUGS file * Fixed command line parameters when launched from Finder * Implemented setting the icon window caption * Implemented frameless style windows * Added note about SDL_RESIZABLE implementation to SDL_QuartzVideo.m * Window close requests now go through the event filtering system
author Sam Lantinga <slouken@lokigames.com>
date Mon, 11 Jun 2001 06:44:43 +0000
parents ce9cd2cf0d0d
children d1447a846d80
line wrap: on
line diff
--- a/src/video/quartz/SDL_QuartzWindow.m	Mon Jun 11 00:08:35 2001 +0000
+++ b/src/video/quartz/SDL_QuartzWindow.m	Mon Jun 11 06:44:43 2001 +0000
@@ -35,9 +35,7 @@
 @implementation SDL_QuartzWindowDelegate
 - (BOOL)windowShouldClose:(id)sender {
 
-    SDL_Event event;
-    event.type = SDL_QUIT;
-    SDL_PushEvent(&event);
+    SDL_PrivateQuit();
     return NO;
 }
-@end
\ No newline at end of file
+@end