[webkit-changes] cvs commit: WebKit/WebCoreSupport.subproj
WebBridge.m
Geoffrey
ggaren at opensource.apple.com
Tue Dec 20 10:47:16 PST 2005
ggaren 05/12/20 10:47:15
Modified: . ChangeLog
WebCoreSupport.subproj WebBridge.m
Log:
Reviewed by adele.
Fixed build failure due to missing 'b's in my last checkin.
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge isStatusbarVisible]): changed 'B' to 'b'
(-[WebBridge setStatusbarVisible:]): ditto
Revision Changes Path
1.3417 +10 -0 WebKit/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebKit/ChangeLog,v
retrieving revision 1.3416
retrieving revision 1.3417
diff -u -r1.3416 -r1.3417
--- ChangeLog 20 Dec 2005 18:29:04 -0000 1.3416
+++ ChangeLog 20 Dec 2005 18:47:11 -0000 1.3417
@@ -1,3 +1,13 @@
+2005-12-20 Geoffrey Garen <ggaren at apple.com>
+
+ Reviewed by adele.
+
+ Fixed build failure due to missing 'b's in my last checkin.
+
+ * WebCoreSupport.subproj/WebBridge.m:
+ (-[WebBridge isStatusbarVisible]): changed 'B' to 'b'
+ (-[WebBridge setStatusbarVisible:]): ditto
+
2005-12-20 Mitz Pettel <opendarwin.org at mitzpettel.com>
Reviewed by Darin, committed by Adele.
1.379 +2 -2 WebKit/WebCoreSupport.subproj/WebBridge.m
Index: WebBridge.m
===================================================================
RCS file: /cvs/root/WebKit/WebCoreSupport.subproj/WebBridge.m,v
retrieving revision 1.378
retrieving revision 1.379
diff -u -r1.378 -r1.379
--- WebBridge.m 20 Dec 2005 17:06:04 -0000 1.378
+++ WebBridge.m 20 Dec 2005 18:47:15 -0000 1.379
@@ -265,7 +265,7 @@
[[_frame frameView] setAllowsScrolling:visible];
}
-- (BOOL)isStatusBarVisible
+- (BOOL)isStatusbarVisible
{
ASSERT(_frame != nil);
WebView *wv = [_frame webView];
@@ -275,7 +275,7 @@
return [[WebDefaultUIDelegate sharedUIDelegate] webViewIsStatusBarVisible:wv];
}
-- (void)setStatusBarVisible:(BOOL)visible
+- (void)setStatusbarVisible:(BOOL)visible
{
ASSERT(_frame != nil);
WebView *wv = [_frame webView];
More information about the webkit-changes
mailing list