]> git.saurik.com Git - cydia.git/commitdiff
Additional code folding (and fixed an unmatched code folding end-marker); also, a...
authorGrant Paul <chpwn@chpwn.com>
Tue, 5 Oct 2010 04:00:07 +0000 (21:00 -0700)
committerGrant Paul <chpwn@chpwn.com>
Tue, 5 Oct 2010 04:00:07 +0000 (21:00 -0700)
Cydia.mm

index 8c5d8b8d9ab30a4c7eb0ecb37489c5fcfa29856b..b86bb30410f036932a00a5218392a6b6cbb63770 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -386,6 +386,7 @@ static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive |
 #define ShowInternals (0 && !ForRelease)
 #define IgnoreInstall (0 && !ForRelease)
 #define RecycleWebViews 0
+#define RotationEnabled 1
 #define RecyclePackageViews (1 && ForRelease)
 #define AlwaysReload (1 && !ForRelease)
 
@@ -3871,7 +3872,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 @implementation CYViewController
 @end
 /* }}} */
-
+/* Cydia Browser Controller {{{ */
 @interface CYBrowserController : BrowserController {
     CydiaObject *cydia_;
 }
@@ -3961,7 +3962,9 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 }
 
 @end
+/* }}} */
 
+/* Confirmation {{{ */
 @protocol ConfirmationControllerDelegate
 - (void) cancelAndClear:(bool)clear;
 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
@@ -7652,8 +7655,11 @@ freeing the view controllers on tab change */
 }
 
 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
-    // XXX: this should be a compile-time flag
+#ifdef RotationEnabled
     return YES;
+#else
+    return NO;
+#endif
 }
 
 - (void) setTabBarController:(UITabBarController *)controller {