Fix warnings about overloaded virtual functions in tests (CLANG).
authorFriedemann Kleint <Friedemann.Kleint@digia.com>
Thu, 7 Mar 2013 11:08:48 +0000 (12:08 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 11 Mar 2013 14:09:08 +0000 (15:09 +0100)
Change-Id: I1f4bda77d0520766813201726f53b439b6094a24
Reviewed-by: JÄ™drzej Nowacki <jedrzej.nowacki@digia.com>

tests/auto/qml/qqmlnotifier/tst_qqmlnotifier.cpp
tests/auto/quick/touchmouse/tst_touchmouse.cpp

index ae37b6a..fa3b190 100644 (file)
@@ -161,7 +161,7 @@ public:
 private slots:
     void initTestCase() Q_DECL_OVERRIDE;
     void cleanupTestCase();
-    void connectNotify();
+    void testConnectNotify();
 
     void removeV4Binding();
     void removeV4Binding2();
@@ -215,7 +215,7 @@ void tst_qqmlnotifier::cleanupTestCase()
     exportedObject = 0;
 }
 
-void tst_qqmlnotifier::connectNotify()
+void tst_qqmlnotifier::testConnectNotify()
 {
     createObjects();
 
index d33bf39..15a4f0c 100644 (file)
@@ -148,7 +148,7 @@ private slots:
     void initTestCase();
 
     void simpleTouchEvent();
-    void eventFilter();
+    void testEventFilter();
     void mouse();
     void touchOverMouse();
     void mouseOverTouch();
@@ -303,7 +303,7 @@ void tst_TouchMouse::simpleTouchEvent()
     delete window;
 }
 
-void tst_TouchMouse::eventFilter()
+void tst_TouchMouse::testEventFilter()
 {
 //    // install event filter on item and see that it can grab events
 //    QQuickView *window = createView();