Deprecate qWaitForWindowShown QWidget* overload since 5.0.
authorStephen Kelly <stephen.kelly@kdab.com>
Wed, 22 Aug 2012 09:53:26 +0000 (11:53 +0200)
committerQt by Nokia <qt-info@nokia.com>
Mon, 27 Aug 2012 21:25:30 +0000 (23:25 +0200)
It is already documented as deprecated in 5.0, so marking it as deprecated
since 6.0 is silly.

Change-Id: If72cc81bdad18c907022c48b9aa8e7d87eb88e59
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
src/testlib/qtestsystem.h

index 9946c4a..43edf11 100644 (file)
@@ -129,14 +129,14 @@ namespace QTest
     }
 #endif
 
-#if QT_DEPRECATED_SINCE(6, 0)
+#if QT_DEPRECATED_SINCE(5, 0)
 #  ifdef QT_WIDGETS_LIB
     QT_DEPRECATED inline static bool qWaitForWindowShown(QWidget *widget, int timeout = 1000)
     {
         return qWaitForWindowExposed(widget, timeout);
     }
 #  endif // QT_WIDGETS_LIB
-#endif // QT_DEPRECATED_SINCE(6, 0)
+#endif // QT_DEPRECATED_SINCE(5, 0)
 }
 
 QT_END_NAMESPACE