From cd79e8cf2d642eb18fca492be164c01c3ac4e318 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 1 Mar 2011 15:19:03 -0800 Subject: Rename CYViewController to CyteViewController. --- CyteKit/ViewController.h | 2 +- CyteKit/ViewController.mm | 2 +- CyteKit/WebViewController.h | 4 ++-- CyteKit/WebViewController.mm | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'CyteKit') diff --git a/CyteKit/ViewController.h b/CyteKit/ViewController.h index 1cf1a50..f707ba2 100644 --- a/CyteKit/ViewController.h +++ b/CyteKit/ViewController.h @@ -50,7 +50,7 @@ - (void) unloadData; @end -@interface CYViewController : UIViewController { +@interface CyteViewController : UIViewController { _transient id delegate_; BOOL loaded_; } diff --git a/CyteKit/ViewController.mm b/CyteKit/ViewController.mm index ae69468..9da9be8 100644 --- a/CyteKit/ViewController.mm +++ b/CyteKit/ViewController.mm @@ -60,7 +60,7 @@ extern bool IsWildcat_; @end -@implementation CYViewController +@implementation CyteViewController - (void) setDelegate:(id)delegate { delegate_ = delegate; diff --git a/CyteKit/WebViewController.h b/CyteKit/WebViewController.h index 4c14419..99d5572 100644 --- a/CyteKit/WebViewController.h +++ b/CyteKit/WebViewController.h @@ -52,11 +52,11 @@ @protocol CyteWebViewControllerDelegate - (void) retainNetworkActivityIndicator; - (void) releaseNetworkActivityIndicator; -- (CYViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external; +- (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external; - (void) unloadData; @end -@interface CyteWebViewController : CYViewController < +@interface CyteWebViewController : CyteViewController < CyteWebViewDelegate, UIWebViewDelegate > { diff --git a/CyteKit/WebViewController.mm b/CyteKit/WebViewController.mm index 860955e..b954b8e 100644 --- a/CyteKit/WebViewController.mm +++ b/CyteKit/WebViewController.mm @@ -332,7 +332,7 @@ float CYScrollViewDecelerationRateNormal; NSURL *url([request URL]); // XXX: filter to internal usage? - CYViewController *page([delegate_ pageForURL:url forExternal:NO]); + CyteViewController *page([delegate_ pageForURL:url forExternal:NO]); if (page == nil) { CyteWebViewController *browser([[[class_ alloc] init] autorelease]); -- cgit v1.2.3