From 28e596e4e022e5f11f31f45118bb43d414201672 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sat, 26 Feb 2011 23:55:01 -0800 Subject: [PATCH] Move CYNavigationController higher in the file. --- MobileCydia.mm | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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 { -- 2.45.2