Title: [99116] trunk/Source/WebKit2
Revision
99116
Author
[email protected]
Date
2011-11-02 16:02:51 -0700 (Wed, 02 Nov 2011)

Log Message

[Qt] [WK] Debug build broken after r99065
https://bugs.webkit.org/show_bug.cgi?id=71397

Remove reference to panGestureActive becuase it is not defined anywhere.

Patch by Viatcheslav Ostapenko <[email protected]> on 2011-11-02
Reviewed by Simon Hausmann.

* UIProcess/qt/QtViewportInteractionEngine.cpp:
(WebKit::QtViewportInteractionEngine::panGestureStarted):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (99115 => 99116)


--- trunk/Source/WebKit2/ChangeLog	2011-11-02 23:01:48 UTC (rev 99115)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-02 23:02:51 UTC (rev 99116)
@@ -1,3 +1,15 @@
+2011-11-02  Viatcheslav Ostapenko  <[email protected]>
+
+        [Qt] [WK] Debug build broken after r99065
+        https://bugs.webkit.org/show_bug.cgi?id=71397
+
+        Remove reference to panGestureActive becuase it is not defined anywhere.
+
+        Reviewed by Simon Hausmann.
+
+        * UIProcess/qt/QtViewportInteractionEngine.cpp:
+        (WebKit::QtViewportInteractionEngine::panGestureStarted):
+
 2011-11-02  Jon Lee  <[email protected]>
 
         Update dragging info on mac when user is dragging files into view

Modified: trunk/Source/WebKit2/UIProcess/qt/QtViewportInteractionEngine.cpp (99115 => 99116)


--- trunk/Source/WebKit2/UIProcess/qt/QtViewportInteractionEngine.cpp	2011-11-02 23:01:48 UTC (rev 99115)
+++ trunk/Source/WebKit2/UIProcess/qt/QtViewportInteractionEngine.cpp	2011-11-02 23:02:51 UTC (rev 99116)
@@ -293,8 +293,6 @@
 
 void QtViewportInteractionEngine::panGestureStarted(const QPointF& touchPoint, qint64 eventTimestampMillis)
 {
-    Q_ASSERT(!panGestureActive);
-
     // FIXME: suspend the Web engine (stop animated GIF, etc).
     m_userInteractionFlags |= UserHasMovedContent;
     scroller()->handleInput(QScroller::InputPress, m_viewport->mapFromItem(m_content, touchPoint), eventTimestampMillis);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to