]> git.saurik.com Git - winterboard.git/blobdiff - Application.mm
Messed around with the Dock.
[winterboard.git] / Application.mm
index b09de36615b953ae0787bad1a7ff8b9492c785bc..aa4397ff1e1a0b20c391ea3945cd26a05b0dd8d2 100644 (file)
@@ -134,13 +134,13 @@ static Class $WBSettingsController;
     }
 }
 
-- (id) _popController {
+- (void) _popController {
     // Pop the last controller = exit the application.
     // The only time the last controller should pop is when the user taps Respring/Cancel.
     // Which only gets displayed if the user has made changes.
     if ([self topViewController] == _rootListController)
         [[UIApplication sharedApplication] terminateWithSuccess];
-    return [super _popController];
+    [super _popController];
 }
 
 @end