diff options
-rw-r--r-- | CyteKit/IndirectDelegate.h | 3 | ||||
-rw-r--r-- | CyteKit/TableViewCell.h | 1 | ||||
-rw-r--r-- | CyteKit/TableViewCell.mm | 4 | ||||
-rw-r--r-- | CyteKit/WebViewController.mm | 4 | ||||
-rw-r--r-- | CyteKit/WebViewTableViewCell.h | 1 | ||||
-rw-r--r-- | CyteKit/WebViewTableViewCell.mm | 4 | ||||
-rw-r--r-- | MobileCydia.mm | 6 |
7 files changed, 22 insertions, 1 deletions
diff --git a/CyteKit/IndirectDelegate.h b/CyteKit/IndirectDelegate.h index 386e462..e1c0f25 100644 --- a/CyteKit/IndirectDelegate.h +++ b/CyteKit/IndirectDelegate.h @@ -44,8 +44,11 @@ _transient volatile id delegate_; } +- (id) delegate; - (void) setDelegate:(id)delegate; + - (id) initWithDelegate:(id)delegate; + @end #endif//CyteKit_IndirectDelegate_H diff --git a/CyteKit/TableViewCell.h b/CyteKit/TableViewCell.h index d6ac412..2b391eb 100644 --- a/CyteKit/TableViewCell.h +++ b/CyteKit/TableViewCell.h @@ -54,6 +54,7 @@ _transient id<CyteTableViewCellDelegate> delegate_; } +- (id) delegate; - (void) setDelegate:(id<CyteTableViewCellDelegate>)delegate; @end diff --git a/CyteKit/TableViewCell.mm b/CyteKit/TableViewCell.mm index fd86848..dd737e2 100644 --- a/CyteKit/TableViewCell.mm +++ b/CyteKit/TableViewCell.mm @@ -49,6 +49,10 @@ } return self; } +- (id) delegate { + return delegate_; +} + - (void) setDelegate:(id<CyteTableViewCellDelegate>)delegate { delegate_ = delegate; } diff --git a/CyteKit/WebViewController.mm b/CyteKit/WebViewController.mm index cfe01f7..5d15213 100644 --- a/CyteKit/WebViewController.mm +++ b/CyteKit/WebViewController.mm @@ -59,6 +59,10 @@ float CYScrollViewDecelerationRateNormal; /* Indirect Delegate {{{ */ @implementation IndirectDelegate +- (id) delegate { + return delegate_; +} + - (void) setDelegate:(id)delegate { delegate_ = delegate; } diff --git a/CyteKit/WebViewTableViewCell.h b/CyteKit/WebViewTableViewCell.h index 8a15dbb..b3ee82d 100644 --- a/CyteKit/WebViewTableViewCell.h +++ b/CyteKit/WebViewTableViewCell.h @@ -55,6 +55,7 @@ + (CyteWebViewTableViewCell *) cellWithRequest:(NSURLRequest *)request; - (id) initWithRequest:(NSURLRequest *)request; +- (id) delegate; - (void) setDelegate:(id)delegate; @end diff --git a/CyteKit/WebViewTableViewCell.mm b/CyteKit/WebViewTableViewCell.mm index 164fbf5..6c015bf 100644 --- a/CyteKit/WebViewTableViewCell.mm +++ b/CyteKit/WebViewTableViewCell.mm @@ -87,6 +87,10 @@ } return self; } +- (id) delegate { + return [webview_ delegate]; +} + - (void) setDelegate:(id)delegate { [webview_ setDelegate:delegate]; } diff --git a/MobileCydia.mm b/MobileCydia.mm index bf8da9a..2371e26 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5128,6 +5128,10 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } return self; } +- (id) delegate { + return delegate_; +} + - (void) setDelegate:(id)delegate { delegate_ = delegate; } @@ -5531,7 +5535,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (NSString *) accessibilityLabel { - return [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), (id) name_, (id) description_]; + return name_; } - (void) setPackage:(Package *)package asSummary:(bool)summary { |