aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-08-26 16:24:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-27 13:38:44 +0200
commit703962c13ff0f4c6a399ba49ee2f0cd9681d7454 (patch)
treeb1be31689a454f8622557982d93791d3daaf244b
parentc345388df18b7b468c2438990b7bc17658b3ab11 (diff)
Fix warning about unused variable.
Change-Id: I29f5b2b890f561bc97749d19c0c5f461511c7637 Reviewed-by: Alan Alpert <aalpert@blackberry.com>
-rw-r--r--src/quick/items/qquickwindow.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/quick/items/qquickwindow.cpp b/src/quick/items/qquickwindow.cpp
index 0ab929f9a7..a9a3522559 100644
--- a/src/quick/items/qquickwindow.cpp
+++ b/src/quick/items/qquickwindow.cpp
@@ -458,7 +458,6 @@ bool QQuickWindowPrivate::checkIfDoubleClicked(ulong newPressEventTimestamp)
bool QQuickWindowPrivate::translateTouchToMouse(QQuickItem *item, QTouchEvent *event)
{
- Q_Q(QQuickWindow);
// For each point, check if it is accepted, if not, try the next point.
// Any of the fingers can become the mouse one.
// This can happen because a mouse area might not accept an event at some point but another.