Changeset 5851
- Timestamp:
- May 19, 2008, 1:29:07 PM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.h
r5848 r5851 116 116 117 117 BOOL fSoundPlaying; 118 119 BOOL fRemoteQuit;120 118 } 121 119 -
trunk/macosx/Controller.m
r5849 r5851 228 228 fSoundPlaying = NO; 229 229 230 fRemoteQuit = NO;231 232 230 [GrowlApplicationBridge setGrowlDelegate: self]; 233 231 [[UKKQueue sharedFileWatcher] setDelegate: self]; … … 503 501 - (NSApplicationTerminateReply) applicationShouldTerminate: (NSApplication *) sender 504 502 { 505 if (!fUpdateInProgress && !fRemoteQuit &&[fDefaults boolForKey: @"CheckQuit"])503 if (!fUpdateInProgress && [fDefaults boolForKey: @"CheckQuit"]) 506 504 { 507 505 int active = 0, downloading = 0; … … 4049 4047 } 4050 4048 4051 - (void) ipcQuit4049 /*- (void) ipcQuit 4052 4050 { 4053 4051 fRemoteQuit = YES; … … 4216 4214 4217 4215 return YES; 4218 } 4216 }*/ 4219 4217 4220 4218 @end
Note: See TracChangeset
for help on using the changeset viewer.