diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-22 18:29:48 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-22 18:29:48 -0800 |
commit | 12835c9d6d82aeabaa962b541fd676a30b444c1a (patch) | |
tree | baa1bde334e9ea99559883cb919fd71dd2c5c412 /MobileCydia.mm | |
parent | 4ede7a3fbf5146f4eff4e7eb5293ca5696d4d1c7 (diff) |
Remove obsolete -[ProgressController isRunning].
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 67c8714..907498a 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4763,7 +4763,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { UITextView *output_; UITextLabel *status_; UIPushButton *close_; - BOOL running_; SHA1SumValue springlist_; SHA1SumValue notifyconf_; _H<NSString> title_; @@ -4775,8 +4774,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (void) setTitle:(NSString *)title; -- (BOOL) isRunning; - @end @implementation ProgressController @@ -4879,8 +4876,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (void) closeButtonPushed { - running_ = NO; - UpdateExternalStatus(0); switch (Finish_) { @@ -4938,7 +4933,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [[self view] addSubview:status_]; [delegate_ retainNetworkActivityIndicator]; - running_ = YES; { FileFd file; @@ -5064,10 +5058,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [progress_ setProgress:[percent floatValue]]; } -- (BOOL) isRunning { - return running_; -} - @end /* }}} */ |