diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-10-06 20:34:07 -0700 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2010-10-06 20:42:47 -0700 |
commit | 96f3833bfcfa8c5cb8bc2a6980bcaadc2b850931 (patch) | |
tree | 58885cfe3995b70c88f380ae4d37defa23608026 /UICaboodle/BrowserView.mm | |
parent | 02012733967832de2f331cd42d73f53724d66a69 (diff) |
Let UICaboodle build with clang++ as well as g++. Cydia needs additional changes.
Diffstat (limited to 'UICaboodle/BrowserView.mm')
-rw-r--r-- | UICaboodle/BrowserView.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/UICaboodle/BrowserView.mm b/UICaboodle/BrowserView.mm index 9b0c93d..ff39763 100644 --- a/UICaboodle/BrowserView.mm +++ b/UICaboodle/BrowserView.mm @@ -161,7 +161,7 @@ static Class $UIWebBrowserView; @implementation WebScriptObject (UICaboodle) -- (unsigned) count { +- (NSUInteger) count { id length([self valueForKey:@"length"]); if ([length respondsToSelector:@selector(intValue)]) return [length intValue]; @@ -759,10 +759,10 @@ static Class $UIWebBrowserView; goto ignore; } - int store(_not(int)); + NSInteger store(_not(NSInteger)); if (NSURL *itms = [url itmsURL:&store]) { #if LogBrowser - NSLog(@"itms#%@#%u#%@", url, store, itms); + NSLog(@"itms#%@#%d#%@", url, (int) store, itms); #endif if (capability != nil && ( @@ -1144,7 +1144,7 @@ static Class $UIWebBrowserView; if ([frame parentFrame] == nil) { if (DOMDocument *document = [frame DOMDocument]) if (DOMNodeList<NSFastEnumeration> *bodies = [document getElementsByTagName:@"body"]) - for (DOMHTMLBodyElement *body in bodies) { + for (DOMHTMLBodyElement *body in (id) bodies) { DOMCSSStyleDeclaration *style([document getComputedStyle:body pseudoElement:nil]); bool colored(false); |