summaryrefslogtreecommitdiff
path: root/CyteKit/WebViewController.h
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-03-05 10:53:18 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-07 02:41:38 -0800
commit7b33d20196938812433b59a8b8d6ebaf4758df40 (patch)
tree7339ff541c0b38ac43513febd03db5a2afb1e85d /CyteKit/WebViewController.h
parenta1e959dd81004bbfef868da0e8329b7602f8b732 (diff)
Replace all Objective-C memory managment with _H<>.
Diffstat (limited to 'CyteKit/WebViewController.h')
-rw-r--r--CyteKit/WebViewController.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/CyteKit/WebViewController.h b/CyteKit/WebViewController.h
index 9572487..0954b38 100644
--- a/CyteKit/WebViewController.h
+++ b/CyteKit/WebViewController.h
@@ -65,9 +65,9 @@
_transient CyteWebView *webview_;
_transient UIScrollView *scroller_;
- UIActivityIndicatorView *indicator_;
- IndirectDelegate *indirect_;
- NSURLAuthenticationChallenge *challenge_;
+ _H<UIActivityIndicatorView> indicator_;
+ _H<IndirectDelegate> indirect_;
+ _H<NSURLAuthenticationChallenge> challenge_;
bool error_;
_H<NSURLRequest> request_;
@@ -77,8 +77,8 @@
_transient NSNumber *sensitive_;
- NSString *title_;
- NSMutableSet *loading_;
+ _H<NSString> title_;
+ _H<NSMutableSet> loading_;
// XXX: NSString * or UIImage *
_H<NSObject> custom_;
@@ -89,8 +89,8 @@
float width_;
Class class_;
- UIBarButtonItem *reloaditem_;
- UIBarButtonItem *loadingitem_;
+ _H<UIBarButtonItem> reloaditem_;
+ _H<UIBarButtonItem> loadingitem_;
bool visible_;
bool hidesNavigationBar_;