Title: [132080] trunk/Source/WebKit2
Revision
132080
Author
[email protected]
Date
2012-10-22 09:30:03 -0700 (Mon, 22 Oct 2012)

Log Message

* UIProcess/API/mac/WKView.mm:
(-[WKView view:stringForToolTip:point:userData:]): Fix build. Forgot to save file
before committing.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (132079 => 132080)


--- trunk/Source/WebKit2/ChangeLog	2012-10-22 16:28:24 UTC (rev 132079)
+++ trunk/Source/WebKit2/ChangeLog	2012-10-22 16:30:03 UTC (rev 132080)
@@ -1,5 +1,11 @@
 2012-10-22  Darin Adler  <[email protected]>
 
+        * UIProcess/API/mac/WKView.mm:
+        (-[WKView view:stringForToolTip:point:userData:]): Fix build. Forgot to save file
+        before committing.
+
+2012-10-22  Darin Adler  <[email protected]>
+
         REGRESSION (r131686): Crash in NSToolTipManager mouseEnteredToolTip
         <rdar://problem/12527528> and https://bugs.webkit.org/show_bug.cgi?id=99792
 

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm (132079 => 132080)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2012-10-22 16:28:24 UTC (rev 132079)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2012-10-22 16:30:03 UTC (rev 132080)
@@ -2514,7 +2514,7 @@
 
 - (NSString *)view:(NSView *)view stringForToolTip:(NSToolTipTag)tag point:(NSPoint)point userData:(void *)data
 {
-    return nsStringFromWebCoreString(_page->toolTip());
+    return nsStringFromWebCoreString(_data->_page->toolTip());
 }
 
 - (void)_wk_toolTipChangedFrom:(NSString *)oldToolTip to:(NSString *)newToolTip
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to