Changeset 102168 in webkit


Ignore:
Timestamp:
Dec 6, 2011 12:47:31 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] Fix assertion in QtViewportInteractionEngine.cpp:468
https://bugs.webkit.org/show_bug.cgi?id=73914

Patch by Alexander Færøy <alexander.faeroy@nokia.com> on 2011-12-06
Reviewed by Kenneth Rohde Christiansen.

m_suspendCount should always be zero when a pinch gesture is started.

  • UIProcess/qt/QtViewportInteractionEngine.cpp:

(WebKit::QtViewportInteractionEngine::pinchGestureStarted):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r102160 r102168  
     12011-12-06  Alexander Færøy  <alexander.faeroy@nokia.com>
     2
     3        [Qt] Fix assertion in QtViewportInteractionEngine.cpp:468
     4        https://bugs.webkit.org/show_bug.cgi?id=73914
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        m_suspendCount should always be zero when a pinch gesture is started.
     9
     10        * UIProcess/qt/QtViewportInteractionEngine.cpp:
     11        (WebKit::QtViewportInteractionEngine::pinchGestureStarted):
     12
    1132011-12-06  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebKit2/UIProcess/qt/QtViewportInteractionEngine.cpp

    r102136 r102168  
    509509void QtViewportInteractionEngine::pinchGestureStarted(const QPointF& pinchCenterInContentCoordinates)
    510510{
    511     ASSERT(m_suspendCount);
     511    ASSERT(!m_suspendCount);
    512512
    513513    if (!m_constraints.isUserScalable)
Note: See TracChangeset for help on using the changeset viewer.