diff options
Diffstat (limited to 'CyteKit/CyteWebViewController.mm')
-rw-r--r-- | CyteKit/CyteWebViewController.mm | 6 |
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; } |