diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-13 11:45:18 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-13 11:45:18 -0800 |
commit | d0cee7a2f9232e064138eeb1e2d1613a19bd47d7 (patch) | |
tree | 54b63fe21ff56b9604f53f970f52bd3e95750f18 | |
parent | 625aabedd04172aa57b9903ff328375c4c9fa828 (diff) |
Rename /ui/ to /ui/ios/.
-rw-r--r-- | MobileCydia.mm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 776e929..569bab1 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4321,7 +4321,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { SizeString([database_ fetcher].PartialPresent()), nil]; - [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/confirm/")]]; + [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/ios/confirm/")]]; [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] initWithTitle:UCLocalize("CANCEL") @@ -5528,7 +5528,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (void) viewWillAppear:(BOOL)animated { if (![self hasLoaded]) - [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/package/")]]; + [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/ios/package/")]]; [super viewWillAppear:animated]; } @@ -5587,7 +5587,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { action:@selector(customButtonClicked) ]; - [self loadURL:[NSURL URLWithString:CydiaURL([NSString stringWithFormat:@"ui/package/#!/%@", name])]]; + [self loadURL:[NSURL URLWithString:CydiaURL([NSString stringWithFormat:@"ui/ios/package/#!/%@", name])]]; } - (void) setPackage:(Package *)package { @@ -6030,7 +6030,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (void) viewWillAppear:(BOOL)animated { if (![self hasLoaded]) - [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/home/")]]; + [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/ios/home/")]]; [super viewWillAppear:animated]; @@ -6064,7 +6064,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (void) viewWillAppear:(BOOL)animated { if (![self hasLoaded]) - [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/manage/")]]; + [self loadURL:[NSURL URLWithString:CydiaURL(@"ui/ios/manage/")]]; [super viewWillAppear:animated]; } |