diff options
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 /* }}} */ |