compile when shadowing is an error
authorGunnar Sletta <gunnar.sletta@nokia.com>
Thu, 15 Sep 2011 06:48:10 +0000 (08:48 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 15 Sep 2011 07:17:05 +0000 (09:17 +0200)
Change-Id: If12cd19821d07303e808e19be1ee3984c90110b1
Reviewed-on: http://codereview.qt-project.org/4946
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
src/gui/kernel/qwindow.h
src/testlib/qtesttouch.h

index 41b63fb..53d78c4 100644 (file)
@@ -136,7 +136,7 @@ public:
     void setBaseSize(const QSize &size);
     void setSizeIncrement(const QSize &size);
 
-    void setGeometry(int x, int y, int w, int h) { setGeometry(QRect(x, y, w, h)); }
+    void setGeometry(int posx, int posy, int w, int h) { setGeometry(QRect(posx, posy, w, h)); }
     void setGeometry(const QRect &rect);
     QRect geometry() const;
 
@@ -149,9 +149,9 @@ public:
     inline QPoint pos() const { return geometry().topLeft(); }
 
     inline void move(const QPoint &pt) { setGeometry(QRect(pt, size())); }
-    inline void move(int x, int y) { move(QPoint(x, y)); }
+    inline void move(int posx, int posy) { move(QPoint(posx, posy)); }
 
-    inline void resize(const QSize &size) { setGeometry(QRect(pos(), size)); }
+    inline void resize(const QSize &newsize) { setGeometry(QRect(pos(), newsize)); }
     inline void resize(int w, int h) { setGeometry(QRect(x(), y(), w, h)); }
 
     QMargins frameMargins() const;
index 9191ac9..60a300d 100644 (file)
@@ -157,15 +157,15 @@ namespace QTest
                 return window->mapToGlobal(pt);
             return targetWindow ? targetWindow->mapToGlobal(pt) : pt;
         }
-        QWindowSystemInterface::TouchPoint touchPoint(const QTouchEvent::TouchPoint& point)
+        QWindowSystemInterface::TouchPoint touchPoint(const QTouchEvent::TouchPoint& pt)
         {
             QWindowSystemInterface::TouchPoint p;
-            p.id = point.id();
-            p.isPrimary = point.isPrimary();
-            p.normalPosition = point.screenRect().topLeft();
-            p.area = point.screenRect();
-            p.pressure = point.pressure();
-            p.state = point.state();
+            p.id = pt.id();
+            p.isPrimary = pt.isPrimary();
+            p.normalPosition = pt.screenRect().topLeft();
+            p.area = pt.screenRect();
+            p.pressure = pt.pressure();
+            p.state = pt.state();
             return p;
         }
         QList<struct QWindowSystemInterface::TouchPoint> touchPointList(const QList<QTouchEvent::TouchPoint>& pointList)