diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-07 12:46:09 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-07 12:46:09 -0400 |
| commit | 24d40fa12d184ebd595344c5c1775d0175a2f4d1 (patch) | |
| tree | a1ba629b6666dc407cbe8898e986c757ca8528f7 /bleh_darwin.m | |
| parent | f7817f6987f83d84893466ee4f8a99af98ee643f (diff) | |
Fixed AppQuit on Mac OS X (forgot to set the NSApp delegate AND was using the wrong selector).
Diffstat (limited to 'bleh_darwin.m')
| -rw-r--r-- | bleh_darwin.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bleh_darwin.m b/bleh_darwin.m index 6094eeb..8653e74 100644 --- a/bleh_darwin.m +++ b/bleh_darwin.m @@ -336,7 +336,7 @@ void objc_setFont(id what, unsigned int csize) extern void appDelegate_applicationShouldTerminate(); -static NSApplicationTerminateReply __appDelegate_applicationShouldTerminate(id self, SEL sel) +static NSApplicationTerminateReply __appDelegate_applicationShouldTerminate(id self, SEL sel, id app) { appDelegate_applicationShouldTerminate(); return NSTerminateCancel; // don't quit |
