diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-26 23:55:01 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:25 -0800 |
commit | 28e596e4e022e5f11f31f45118bb43d414201672 (patch) | |
tree | b338bfc7b1a6e706bc02733854a0dee59691e333 | |
parent | 9dac415b3549213d312f7be3f971c322a3d63a5b (diff) |
Move CYNavigationController higher in the file.
-rw-r--r-- | MobileCydia.mm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index e278ab8..1eb6051 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -6820,7 +6820,18 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { @end /* }}} */ -@class CYNavigationController; +/* Cydia Navigation Controller Interface {{{ */ +@interface CYNavigationController : UINavigationController { + _transient Database *database_; + _transient id<UINavigationControllerDelegate> delegate_; +} + +- (NSArray *) navigationURLCollection; +- (id) initWithDatabase:(Database *)database; +- (void) reloadData; + +@end +/* }}} */ /* Cydia Tab Bar Controller {{{ */ @interface CYTabBarController : UITabBarController < @@ -7110,19 +7121,8 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { @end /* }}} */ -/* Cydia Navigation Controller {{{ */ -@interface CYNavigationController : UINavigationController { - _transient Database *database_; - _transient id<UINavigationControllerDelegate> delegate_; -} - -- (NSArray *) navigationURLCollection; -- (id) initWithDatabase:(Database *)database; -- (void) reloadData; - -@end - +/* Cydia Navigation Controller Implementation {{{ */ @implementation CYNavigationController - (NSArray *) navigationURLCollection { |