]> git.saurik.com Git - cydia.git/blobdiff - CyteKit/ViewController.mm
Seriously: not a single person actually helped :/.
[cydia.git] / CyteKit / ViewController.mm
index a036595603c7e4f7af99b2e2d2c97ee469f968a9..ae7539c547c46624d4099397625e5e9d608df398 100644 (file)
@@ -1,5 +1,5 @@
 /* Cydia - iPhone UIKit Front-End for Debian APT
- * Copyright (C) 2008-2013  Jay Freeman (saurik)
+ * Copyright (C) 2008-2015  Jay Freeman (saurik)
 */
 
 /* GNU General Public License, Version 3 {{{ */
@@ -24,7 +24,7 @@
 #include <Foundation/Foundation.h>
 #include <UIKit/UIKit.h>
 
-extern bool IsWildcat_;
+#include "iPhonePrivate.h"
 
 @implementation UIViewController (Cydia)
 
@@ -106,8 +106,12 @@ extern bool IsWildcat_;
     return nil;
 }
 
-- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
-    return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
+- (void) setPageColor:(UIColor *)color {
+    if (color == nil)
+        color = [UIColor groupTableViewBackgroundColor];
+    color_ = color;
 }
 
+#include "InterfaceOrientation.h"
+
 @end