diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-07-20 14:11:55 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:11 +0000 |
commit | e64882de7837474aab0fd108a480b7ee2ead46a6 (patch) | |
tree | 6260e1b8831a3c9bb02e00c70a0b7372f1fbb21f | |
parent | bd150f541dd0f3000aed7fbd16967980fb8e5123 (diff) |
Finished HUD interface.
-rw-r--r-- | Cydia.mm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5379,8 +5379,8 @@ Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$"); - (void) reorganize { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - //system("/usr/libexec/cydia/free.sh"); - //[self performSelectorOnMainThread:@selector(finish) withObject:nil waitUntilDone:NO]; + system("/usr/libexec/cydia/free.sh"); + [self performSelectorOnMainThread:@selector(finish) withObject:nil waitUntilDone:NO]; [pool release]; } @@ -5424,7 +5424,7 @@ Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$"); readlink("/Library/Wallpapers", NULL, 0) == -1 && errno == EINVAL ) { hud_ = [[UIProgressHUD alloc] initWithWindow:window_]; - [hud_ setText:@"Reorganizing\nOne Minute!"]; + [hud_ setText:@"Reorganizing\nOne Minute!\nPlease Wait...\nDO NOT STOP"]; [hud_ show:YES]; [underlay_ addSubview:hud_]; |