summaryrefslogtreecommitdiffstats
path: root/tests/manual/qdesktopwidget
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2019-07-23 14:33:31 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2019-10-13 13:08:42 +0200
commit66a9c4b0b259fe9a61150b7394af0f31ebfd38ac (patch)
tree7c005ce8540247fa3ff3783d79b9c54edb16370d /tests/manual/qdesktopwidget
parenta90899df4330afccd8299fa81754f369e6d12344 (diff)
Remove usages of deprecated APIs of QDesktopWidget
- Replaced the usages of the following deprecated APIs: * QDesktopWidget::screenCount() -> QGuiApplication::screens().size() * QDesktopWidget::screenGeometry(int) -> QGuiApplication::screens().at() * QDesktopWidget::screenNumber(QPoint) -> QGuiApplication::screenAt(QPoint) - Added notes for the QWidget *QDesktopWidget::screen(int), which currently has no replacement. - Fixed the tests to build conditionally, only when these APIs are enabled. Task-number: QTBUG-76491 Change-Id: I2fdec96d0a6a4fc782c53549b05a5556412b8305 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'tests/manual/qdesktopwidget')
-rw-r--r--tests/manual/qdesktopwidget/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/manual/qdesktopwidget/main.cpp b/tests/manual/qdesktopwidget/main.cpp
index f4c82c5f72..978dc62b0e 100644
--- a/tests/manual/qdesktopwidget/main.cpp
+++ b/tests/manual/qdesktopwidget/main.cpp
@@ -34,6 +34,7 @@
class DesktopView : public QGraphicsView
{
+#if QT_DEPRECATED_SINCE(5, 11)
Q_OBJECT
public:
DesktopView()
@@ -195,6 +196,7 @@ private:
QGraphicsScene *scene;
QGraphicsRectItem *that;
QPoint thatRoot;
+#endif
};
#include "main.moc"