summaryrefslogtreecommitdiff
path: root/CyteKit/CyteWebViewController.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-03-01 08:44:48 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-07 02:41:32 -0800
commit09e89a8a6d75e0e9913c419049012cef6e9da785 (patch)
treefcc11866e824aec4b2bedcb906874f1bf34c3687 /CyteKit/CyteWebViewController.mm
parenta576488fdc04e8fb7ecf980c07f6300774232ed0 (diff)
Rename BrowserController to CyteWebViewController.
Diffstat (limited to 'CyteKit/CyteWebViewController.mm')
-rw-r--r--CyteKit/CyteWebViewController.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/CyteKit/CyteWebViewController.mm b/CyteKit/CyteWebViewController.mm
index d1f610c..cd43c94 100644
--- a/CyteKit/CyteWebViewController.mm
+++ b/CyteKit/CyteWebViewController.mm
@@ -117,7 +117,7 @@ float CYScrollViewDecelerationRateNormal;
@end
/* }}} */
-@implementation BrowserController
+@implementation CyteWebViewController
#if ShowInternals
#include "CyteKit/UCInternal.h"
@@ -134,7 +134,7 @@ float CYScrollViewDecelerationRateNormal;
- (void) dealloc {
#if LogBrowser
- NSLog(@"[BrowserController dealloc]");
+ NSLog(@"[CyteWebViewController dealloc]");
#endif
[webview_ setDelegate:nil];
@@ -335,7 +335,7 @@ float CYScrollViewDecelerationRateNormal;
CYViewController *page([delegate_ pageForURL:url forExternal:NO]);
if (page == nil) {
- BrowserController *browser([[[class_ alloc] init] autorelease]);
+ CyteWebViewController *browser([[[class_ alloc] init] autorelease]);
[browser loadRequest:request];
page = browser;
}