]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/RVPage.mm
Remove obsolete make.sh.
[cydia.git] / UICaboodle / RVPage.mm
index 1f366c1b18e42aefc456e191b896ef43ac7dda9c..40e54cd56d078f31429725d475281e417a016829 100644 (file)
@@ -3,8 +3,6 @@
 #import <Foundation/Foundation.h>
 #import <UIKit/UIKit.h>
 
-#import "RVBook.h"
-
 extern bool IsWildcat_;
 
 @implementation UIViewController (Cydia)
@@ -13,6 +11,12 @@ extern bool IsWildcat_;
     return YES;
 }
 
+- (void) reloadData {
+}
+
+- (void) unloadData {
+}
+
 @end
 
 @implementation CYViewController
@@ -52,6 +56,8 @@ extern bool IsWildcat_;
 }
 
 - (void) reloadData {
+    [super reloadData];
+
     // This is called automatically on the first appearance of a controller,
     // or any other time it needs to reload the information shown. However (!),
     // this is not called by any tab bar or navigation controller's -reloadData
@@ -59,6 +65,11 @@ extern bool IsWildcat_;
     loaded_ = YES;
 }
 
+- (void) unloadData {
+    loaded_ = NO;
+    [super unloadData];
+}
+
 - (NSURL *) navigationURL {
     return nil;
 }