]> git.saurik.com Git - cydia.git/commitdiff
Use IsWildcat_, not UI_USER_INTERFACE_IDIOM().
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 2 Feb 2011 07:39:14 +0000 (23:39 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 7 Feb 2011 20:26:11 +0000 (12:26 -0800)
MobileCydia.mm
UICaboodle/RVPage.mm

index 24aa3d008a6a5eb3b531f158ef3d88e8a8a4539a..f8c2c9a931652e6f4d3c9b1f6926c1ddfdf29c21 100644 (file)
@@ -1071,7 +1071,7 @@ static _transient NSMutableDictionary *Sources_;
 static bool Changed_;
 static time_t now_;
 
-static bool IsWildcat_;
+bool IsWildcat_;
 /* }}} */
 
 /* Display Helpers {{{ */
index 81c8739c37b145f3aef6f788e5a17d52aa49d907..3e6e69277335f29a04d2e4dd1ea4df265feaba66 100644 (file)
@@ -5,6 +5,8 @@
 
 #import "RVBook.h"
 
+extern bool IsWildcat_;
+
 @implementation CYViewController
 - (void) setDelegate:(id)delegate {
     delegate_ = delegate;
@@ -12,6 +14,6 @@
 - (void) reloadData {
 }
 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
-    return (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad || orientation == UIInterfaceOrientationPortrait);
+    return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
 }
 @end