From ae739f001626de8f1f04f3f325488978870b0369 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Thu, 29 Dec 2011 09:27:08 +1000 Subject: [PATCH] Minor cleanup: use standard emit syntax. Change-Id: Ic8a86e78bc16dd091eb03ba74ffdf831eda65a7a Reviewed-by: Alan Alpert --- src/quick/items/qquickmultipointtoucharea.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/quick/items/qquickmultipointtoucharea.cpp b/src/quick/items/qquickmultipointtoucharea.cpp index 78bc31f..461c237 100644 --- a/src/quick/items/qquickmultipointtoucharea.cpp +++ b/src/quick/items/qquickmultipointtoucharea.cpp @@ -477,9 +477,9 @@ void QQuickMultiPointTouchArea::updateTouchData(QEvent *event) } } - if (ended) emit(touchPointsReleased(_releasedTouchPoints)); - if (moved) emit(touchPointsUpdated(_movedTouchPoints)); - if (started) emit(touchPointsPressed(_pressedTouchPoints)); + if (ended) emit touchPointsReleased(_releasedTouchPoints); + if (moved) emit touchPointsUpdated(_movedTouchPoints); + if (started) emit touchPointsPressed(_pressedTouchPoints); if (!_touchPoints.isEmpty()) emit touchUpdated(_touchPoints.values()); } } -- 1.7.2.5