Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Minor cleanup: use standard emit syntax.
Change-Id: Ic8a86e78bc16dd091eb03ba74ffdf831eda65a7a
Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
  • Loading branch information
Michael Brasser authored and Qt by Nokia committed Dec 30, 2011
1 parent 5aaa2dc commit ae739f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/quick/items/qquickmultipointtoucharea.cpp
Expand Up @@ -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());
}
}
Expand Down

0 comments on commit ae739f0

Please sign in to comment.