summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qtestsupport_widgets.h
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2018-07-18 13:56:47 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2018-07-20 06:40:11 +0000
commit65463857a9f489f45b68287bdcc4fe540eeb2463 (patch)
treeb81db692a3ce41938109274c0844a645123ebc4e /src/widgets/kernel/qtestsupport_widgets.h
parent8aa14a84a91d3f8116e04cbe68bfcdb0207c2a3b (diff)
Inline deprecated QTest::qWaitForWindowShown
Change-Id: Ie8c3975643b9d7e60caf9de4dd3eaa13066a1028 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'src/widgets/kernel/qtestsupport_widgets.h')
-rw-r--r--src/widgets/kernel/qtestsupport_widgets.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/widgets/kernel/qtestsupport_widgets.h b/src/widgets/kernel/qtestsupport_widgets.h
index b96365899a..ca1406b0b2 100644
--- a/src/widgets/kernel/qtestsupport_widgets.h
+++ b/src/widgets/kernel/qtestsupport_widgets.h
@@ -51,7 +51,8 @@ Q_WIDGETS_EXPORT Q_REQUIRED_RESULT bool qWaitForWindowActive(QWidget *widget, in
Q_WIDGETS_EXPORT Q_REQUIRED_RESULT bool qWaitForWindowExposed(QWidget *widget, int timeout = 5000);
#if QT_DEPRECATED_SINCE(5, 0)
-Q_WIDGETS_EXPORT QT_DEPRECATED Q_REQUIRED_RESULT bool qWaitForWindowShown(QWidget *widget, int timeout = 5000);
+QT_DEPRECATED Q_REQUIRED_RESULT inline static bool qWaitForWindowShown(QWidget *widget, int timeout = 5000)
+{ return QTest::qWaitForWindowExposed(widget, timeout); }
#endif
}