]> git.saurik.com Git - cydia.git/commitdiff
Finished upgrade.
authorJay Freeman (saurik) <saurik@saurik.com>
Tue, 22 Jan 2008 11:22:06 +0000 (11:22 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Tue, 22 Jan 2008 11:22:06 +0000 (11:22 +0000)
Cydia.mm

index b525d61c073337abc3998727e5e298f428f7187e..aa90bd0f53fc9525105eefd5bb4a7f84832495b0 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -646,7 +646,6 @@ void AddTextView(NSMutableDictionary *fields, NSMutableArray *packages, NSString
         return proposed;
     else {
         _assert(size_t(row) < [fields_ count]);
-        fprintf(stderr, "%f\n", [[[fields_ allValues] objectAtIndex:row] contentSize].height);
         return [[[fields_ allValues] objectAtIndex:row] contentSize].height;
     }
 }
@@ -1358,8 +1357,6 @@ void AddTextView(NSMutableDictionary *fields, NSMutableArray *packages, NSString
     }
 
     _assert(pkgDistUpgrade(cache_));
-
-    //InstallPackages(cache_, true);
 }
 
 - (void) setDelegate:(id)delegate {
@@ -1922,6 +1919,8 @@ void AddTextView(NSMutableDictionary *fields, NSMutableArray *packages, NSString
 @interface UpgradeView : PackagesView {
 }
 
+- (void) navigationBar:(UINavigationBar *)navbar buttonClicked:(int)button;
+
 - (NSString *) title;
 - (NSString *) leftTitle;
 - (void) addPackage:(Package *)package;
@@ -1931,6 +1930,15 @@ void AddTextView(NSMutableDictionary *fields, NSMutableArray *packages, NSString
 
 @implementation UpgradeView
 
+- (void) navigationBar:(UINavigationBar *)navbar buttonClicked:(int)button {
+    if (button != 1)
+        [super navigationBar:navbar buttonClicked:button];
+    else {
+        [database_ upgrade];
+        [delegate_ perform];
+    }
+}
+
 - (NSString *) title {
     return @"Upgrade";
 }