Title: [191650] trunk/Source/WebKit2
Revision
191650
Author
timothy_hor...@apple.com
Date
2015-10-27 17:48:40 -0700 (Tue, 27 Oct 2015)

Log Message

Fix the 32-bit build.

* UIProcess/Cocoa/WebViewImpl.mm:
(WebKit::WebViewImpl::dragImageForView):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (191649 => 191650)


--- trunk/Source/WebKit2/ChangeLog	2015-10-28 00:47:20 UTC (rev 191649)
+++ trunk/Source/WebKit2/ChangeLog	2015-10-28 00:48:40 UTC (rev 191650)
@@ -1,5 +1,12 @@
 2015-10-27  Tim Horton  <timothy_hor...@apple.com>
 
+        Fix the 32-bit build.
+
+        * UIProcess/Cocoa/WebViewImpl.mm:
+        (WebKit::WebViewImpl::dragImageForView):
+
+2015-10-27  Tim Horton  <timothy_hor...@apple.com>
+
         Fix the build.
 
         * UIProcess/Cocoa/WebViewImpl.mm:

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm (191649 => 191650)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm	2015-10-28 00:47:20 UTC (rev 191649)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm	2015-10-28 00:48:40 UTC (rev 191650)
@@ -1934,7 +1934,7 @@
 #pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
     [view dragImage:image
-                 at:clientPoint
+                 at:NSPointFromCGPoint(clientPoint)
              offset:NSZeroSize
               event:linkDrag ? [NSApp currentEvent] : m_lastMouseDownEvent.get()
          pasteboard:[NSPasteboard pasteboardWithName:NSDragPboard]
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to