Title: [165126] trunk/Source/WebKit2
Revision
165126
Author
[email protected]
Date
2014-03-05 13:40:30 -0800 (Wed, 05 Mar 2014)

Log Message

Fix a stupid error in r165118 that caused userVisibleString()
to call itself recursively.

* WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm:
(WebKit::WebEditorClient::userVisibleString):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (165125 => 165126)


--- trunk/Source/WebKit2/ChangeLog	2014-03-05 21:37:38 UTC (rev 165125)
+++ trunk/Source/WebKit2/ChangeLog	2014-03-05 21:40:30 UTC (rev 165126)
@@ -1,3 +1,11 @@
+2014-03-05  Simon Fraser  <[email protected]>
+
+        Fix a stupid error in r165118 that caused userVisibleString()
+        to call itself recursively.
+
+        * WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm:
+        (WebKit::WebEditorClient::userVisibleString):
+
 2014-03-05  Benjamin Poulain  <[email protected]>
 
         [iOS] Rename the various VisibleExtent variations to exposedContentRect

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm (165125 => 165126)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm	2014-03-05 21:37:38 UTC (rev 165125)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm	2014-03-05 21:40:30 UTC (rev 165126)
@@ -75,7 +75,7 @@
     
 NSString *WebEditorClient::userVisibleString(NSURL *url)
 {
-    return userVisibleString(url);
+    return WebCore::userVisibleString(url);
 }
 
 NSURL *WebEditorClient::canonicalizeURL(NSURL *url)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to