From: Jay Freeman (saurik) Date: Sun, 27 Feb 2011 07:55:01 +0000 (-0800) Subject: Move CYNavigationController higher in the file. X-Git-Tag: v1.1.0%b1~140 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/28e596e4e022e5f11f31f45118bb43d414201672 Move CYNavigationController higher in the file. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index e278ab86..1eb6051b 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 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 delegate_; -} - -- (NSArray *) navigationURLCollection; -- (id) initWithDatabase:(Database *)database; -- (void) reloadData; - -@end - +/* Cydia Navigation Controller Implementation {{{ */ @implementation CYNavigationController - (NSArray *) navigationURLCollection {