]> git.saurik.com Git - cydia.git/commitdiff
Added more comments, and removed a useless method.
authorGrant Paul <chpwn@chpwn.com>
Mon, 14 Feb 2011 08:35:49 +0000 (00:35 -0800)
committerGrant Paul <chpwn@chpwn.com>
Mon, 14 Feb 2011 08:35:53 +0000 (00:35 -0800)
MobileCydia.mm

index bf44ea693c56962c093d71827d6c9e854d0096b3..dcc9b15346e54657bc98fa115075cbda3dcd1948 100644 (file)
@@ -6596,10 +6596,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 
 @implementation CYNavigationController
 
-- (void) dealloc {
-    [super dealloc];
-}
-
 - (NSArray *) navigationURLCollection {
     NSMutableArray *stack([NSMutableArray array]);
 
@@ -6614,6 +6610,9 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 
 - (void) reloadData {
     for (CYViewController *page in [self viewControllers]) {
+        // Only reload controllers that have already loaded.
+        // This prevents a page from accidentally loading too
+        // early if it hasn't been shown on the screen yet.
         if ([page hasLoaded])
             [page reloadData];
     }