summaryrefslogtreecommitdiff
path: root/CyteKit/WebView.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-06-08 22:42:18 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2011-06-08 22:42:18 -0700
commit4cc9e99a32a73858f3b9739c0cf8ec82bb35e93e (patch)
tree31fbd2791655a0e23e3bd0a173744d92602dd0f1 /CyteKit/WebView.mm
parent058813ae78aec1b25c7c44b2a6188b7ae2264107 (diff)
Make compilations with clang succeed.
Diffstat (limited to 'CyteKit/WebView.mm')
-rw-r--r--CyteKit/WebView.mm4
1 files changed, 4 insertions, 0 deletions
diff --git a/CyteKit/WebView.mm b/CyteKit/WebView.mm
index 1706cc0..084926b 100644
--- a/CyteKit/WebView.mm
+++ b/CyteKit/WebView.mm
@@ -138,6 +138,10 @@
return (id<CyteWebViewDelegate>) [super delegate];
}
+- (void) setDelegate:(id<CyteWebViewDelegate>)delegate {
+ [super setDelegate:delegate];
+}
+
/*- (WebView *) webView:(WebView *)view createWebViewWithRequest:(NSURLRequest *)request {
id<CyteWebViewDelegate> delegate([self delegate]);
WebView *created(nil);