]> git.saurik.com Git - cydia.git/commitdiff
Remove obsolete -[ProgressController isRunning].
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 23 Feb 2011 02:29:48 +0000 (18:29 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Wed, 23 Feb 2011 02:29:48 +0000 (18:29 -0800)
MobileCydia.mm

index 67c8714842f1cbe8dd801347cab6a558e4808312..907498ab9fdbf416494269d5960de12ffc4f832a 100644 (file)
@@ -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
 /* }}} */