Title: [173032] trunk/Source/WebCore
Revision
173032
Author
[email protected]
Date
2014-08-27 16:20:32 -0700 (Wed, 27 Aug 2014)

Log Message

Fix the iOS build.

* page/EventHandler.cpp:
(WebCore::EventHandler::handleMousePressEvent):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173031 => 173032)


--- trunk/Source/WebCore/ChangeLog	2014-08-27 23:06:00 UTC (rev 173031)
+++ trunk/Source/WebCore/ChangeLog	2014-08-27 23:20:32 UTC (rev 173032)
@@ -1,3 +1,10 @@
+2014-08-27  Simon Fraser  <[email protected]>
+
+        Fix the iOS build.
+
+        * page/EventHandler.cpp:
+        (WebCore::EventHandler::handleMousePressEvent):
+
 2014-08-27  Andreas Kling  <[email protected]>
 
         Drawing text in an SVG font causes load events to be fired.

Modified: trunk/Source/WebCore/page/EventHandler.cpp (173031 => 173032)


--- trunk/Source/WebCore/page/EventHandler.cpp	2014-08-27 23:06:00 UTC (rev 173031)
+++ trunk/Source/WebCore/page/EventHandler.cpp	2014-08-27 23:20:32 UTC (rev 173032)
@@ -1653,7 +1653,7 @@
     }
 
 #if ENABLE(TOUCH_EVENTS)
-    bool defaultPrevented = dispatchSyntheticTouchEventIfEnabled(mouseEvent);
+    bool defaultPrevented = dispatchSyntheticTouchEventIfEnabled(plaformMouseEvent);
     if (defaultPrevented)
         return true;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to