diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-01 08:39:34 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:32 -0800 |
commit | 1ee69bb47f1218e051a8ef9b05c1170cf46e1a9d (patch) | |
tree | d89df53fda18f7f934e21b084f4024958b7bd1af /CyteKit/CyteWebViewController.mm | |
parent | a713fcd35b952bc5215b8e235c5e854680706679 (diff) |
Rename CYWebView to CyteWebView.
Diffstat (limited to 'CyteKit/CyteWebViewController.mm')
-rw-r--r-- | CyteKit/CyteWebViewController.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CyteKit/CyteWebViewController.mm b/CyteKit/CyteWebViewController.mm index 5c7ceaf..d1f610c 100644 --- a/CyteKit/CyteWebViewController.mm +++ b/CyteKit/CyteWebViewController.mm @@ -364,7 +364,7 @@ float CYScrollViewDecelerationRateNormal; } } -// CYWebViewDelegate {{{ +// CyteWebViewDelegate {{{ - (void) webView:(WebView *)view addMessageToConsole:(NSDictionary *)message { #if LogMessages static Pcre irritating("^(?:The page at .* displayed insecure content from .*\\.|Unsafe JavaScript attempt to access frame with URL .* from frame with URL .*\\. Domains, protocols and ports must match\\.)\\n$"); @@ -679,7 +679,7 @@ float CYScrollViewDecelerationRateNormal; CGRect bounds([[self view] bounds]); - webview_ = [[[CYWebView alloc] initWithFrame:bounds] autorelease]; + webview_ = [[[CyteWebView alloc] initWithFrame:bounds] autorelease]; [webview_ setDelegate:self]; [self setView:webview_]; |