summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qevent.h
diff options
context:
space:
mode:
authorJeremy Katz <jeremy.katz@nokia.com>2009-09-29 11:03:42 (GMT)
committerJeremy Katz <jeremy.katz@nokia.com>2009-09-29 11:03:42 (GMT)
commite9ef0cd651bcfeb85262e877c693f5efe07dff8e (patch)
tree4af3b622587e50b86679bd4c5830a626d4eec36b /src/gui/kernel/qevent.h
parent777c02085e0f30d0dceb57a9ac96a44999b4a028 (diff)
downloadQt-e9ef0cd651bcfeb85262e877c693f5efe07dff8e.zip
Qt-e9ef0cd651bcfeb85262e877c693f5efe07dff8e.tar.gz
Qt-e9ef0cd651bcfeb85262e877c693f5efe07dff8e.tar.bz2
fix warnings about declarations shadowing class members (autotest reported)
Reviewed-by: Olivier
Diffstat (limited to 'src/gui/kernel/qevent.h')
-rw-r--r--src/gui/kernel/qevent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qevent.h b/src/gui/kernel/qevent.h
index fa2b22f..4396766 100644
--- a/src/gui/kernel/qevent.h
+++ b/src/gui/kernel/qevent.h
@@ -807,7 +807,7 @@ public:
// internal
inline void setWidget(QWidget *awidget) { _widget = awidget; }
inline void setDeviceType(DeviceType adeviceType) { _deviceType = adeviceType; }
- inline void setTouchPointStates(Qt::TouchPointStates touchPointStates) { _touchPointStates = touchPointStates; }
+ inline void setTouchPointStates(Qt::TouchPointStates aTouchPointStates) { _touchPointStates = aTouchPointStates; }
inline void setTouchPoints(const QList<QTouchEvent::TouchPoint> &atouchPoints) { _touchPoints = atouchPoints; }
protected: