Title: [109576] trunk/Tools
Revision
109576
Author
abe...@webkit.org
Date
2012-03-02 07:36:23 -0800 (Fri, 02 Mar 2012)

Log Message

[Qt][WK2] Fix typo in patch committed in r109575

Unreviewed typo fix.

* MiniBrowser/qt/MiniBrowserApplication.cpp:
(MiniBrowserApplication::notify): Cache the position
in floating point coordinates.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (109575 => 109576)


--- trunk/Tools/ChangeLog	2012-03-02 15:27:33 UTC (rev 109575)
+++ trunk/Tools/ChangeLog	2012-03-02 15:36:23 UTC (rev 109576)
@@ -1,5 +1,15 @@
 2012-03-02  Andras Becsi  <andras.be...@nokia.com>
 
+        [Qt][WK2] Fix typo in patch committed in r109575
+
+        Unreviewed typo fix.
+
+        * MiniBrowser/qt/MiniBrowserApplication.cpp:
+        (MiniBrowserApplication::notify): Cache the position
+        in floating point coordinates.
+
+2012-03-02  Andras Becsi  <andras.be...@nokia.com>
+
         [Qt][WK2] Infinite loop on history navigation, when panning
         https://bugs.webkit.org/show_bug.cgi?id=79119
 

Modified: trunk/Tools/MiniBrowser/qt/MiniBrowserApplication.cpp (109575 => 109576)


--- trunk/Tools/MiniBrowser/qt/MiniBrowserApplication.cpp	2012-03-02 15:27:33 UTC (rev 109575)
+++ trunk/Tools/MiniBrowser/qt/MiniBrowserApplication.cpp	2012-03-02 15:36:23 UTC (rev 109576)
@@ -136,7 +136,7 @@
 
         touchPoint.setRect(touchRectForPosition(mouseEvent->localPos()));
         touchPoint.setLastPos(m_lastPos);
-        m_lastPos = mouseEvent->pos();
+        m_lastPos = mouseEvent->localPos();
 
         // Gesture recognition uses the screen position for the initial threshold
         // but since the canvas translates touch events we actually need to pass
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to