diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 06:53:52 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-08 01:50:04 -0800 |
commit | bf7c998c9b68756e925462bbfe1f9a699fc5055b (patch) | |
tree | 14f65a999df9ff282876450581034ce9a3fcd5d3 /CyteKit/WebViewController.h | |
parent | dfdb9ae0d3bc3689c3ca7b59e92f45c1b3ecb28f (diff) |
Automate set{Delegate,DataSource}:nil using _H<>.
Diffstat (limited to 'CyteKit/WebViewController.h')
-rw-r--r-- | CyteKit/WebViewController.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CyteKit/WebViewController.h b/CyteKit/WebViewController.h index 0954b38..76bdd82 100644 --- a/CyteKit/WebViewController.h +++ b/CyteKit/WebViewController.h @@ -46,7 +46,7 @@ #include <UIKit/UIKit.h> #include <MessageUI/MessageUI.h> -#include <CydiaSubstrate/CydiaSubstrate.h> +#include <Menes/ObjectHandle.h> @class IndirectDelegate; @@ -62,11 +62,11 @@ MFMailComposeViewControllerDelegate, UIWebViewDelegate > { - _transient CyteWebView *webview_; + _H<CyteWebView, 1> webview_; _transient UIScrollView *scroller_; _H<UIActivityIndicatorView> indicator_; - _H<IndirectDelegate> indirect_; + _H<IndirectDelegate, 1> indirect_; _H<NSURLAuthenticationChallenge> challenge_; bool error_; |