summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/qt/PlatformTouchPointQt.cpp
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-04-15 10:22:47 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-04-15 10:22:47 -0700
commit40a329169016c529dd7ff6bf403a00f1307f9eb6 (patch)
tree513295e942579cca6df859016a182794e342bf72 /WebCore/platform/qt/PlatformTouchPointQt.cpp
parent7f593939475f95ad30f95c6779b1787fff01c5e4 (diff)
parentea23914212d72886e8be45e6aa4e7eed7e5fc2ba (diff)
downloadexternal_webkit-40a329169016c529dd7ff6bf403a00f1307f9eb6.zip
external_webkit-40a329169016c529dd7ff6bf403a00f1307f9eb6.tar.gz
external_webkit-40a329169016c529dd7ff6bf403a00f1307f9eb6.tar.bz2
Merge "Remove the TouchStationary state from PlatformTouchPoint."
Diffstat (limited to 'WebCore/platform/qt/PlatformTouchPointQt.cpp')
-rw-r--r--WebCore/platform/qt/PlatformTouchPointQt.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/WebCore/platform/qt/PlatformTouchPointQt.cpp b/WebCore/platform/qt/PlatformTouchPointQt.cpp
index c293212..6afe4a1 100644
--- a/WebCore/platform/qt/PlatformTouchPointQt.cpp
+++ b/WebCore/platform/qt/PlatformTouchPointQt.cpp
@@ -35,7 +35,6 @@ PlatformTouchPoint::PlatformTouchPoint(const QTouchEvent::TouchPoint& point)
case Qt::TouchPointReleased: m_state = TouchReleased; break;
case Qt::TouchPointMoved: m_state = TouchMoved; break;
case Qt::TouchPointPressed: m_state = TouchPressed; break;
- case Qt::TouchPointStationary: m_state = TouchStationary; break;
}
m_screenPos = point.screenPos().toPoint();
m_pos = point.pos().toPoint();