From 082eebe6a47c910593f87798bf688149e6ca5534 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Tue, 12 May 2020 14:30:36 +0200 Subject: Remove deprecated QDesktopServices APIs Change-Id: Ic21ad2938b20c1aa3ae499a921c9cff92f615816 Reviewed-by: Lars Knoll --- .../util/qdesktopservices/tst_qdesktopservices.cpp | 37 ---------------------- 1 file changed, 37 deletions(-) (limited to 'tests/auto/gui/util') diff --git a/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp b/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp index 4d95345de9..7c864a078c 100644 --- a/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp +++ b/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp @@ -28,7 +28,6 @@ #include -#include #include #include @@ -39,9 +38,6 @@ class tst_qdesktopservices : public QObject private slots: void openUrl(); void handlers(); -#if QT_DEPRECATED_SINCE(5, 0) - void testDataLocation(); -#endif }; void tst_qdesktopservices::openUrl() @@ -87,39 +83,6 @@ void tst_qdesktopservices::handlers() QCOMPARE(barHandler.lastHandledUrl.toString(), barUrl.toString()); } -#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC) -#define Q_XDG_PLATFORM -#endif - -#if QT_DEPRECATED_SINCE(5, 0) -void tst_qdesktopservices::testDataLocation() -{ - // This is the one point where QDesktopServices and QStandardPaths differ. - // QDesktopServices on unix returns "data"/orgname/appname for DataLocation, for Qt4 compat. - // And the appname in qt4 defaulted to empty, not to argv[0]. - { - const QString base = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); - const QString app = QDesktopServices::storageLocation(QDesktopServices::DataLocation); -#ifdef Q_XDG_PLATFORM - QCOMPARE(app, base + "/data//"); // as ugly as in Qt4 -#else - QCOMPARE(app, base); -#endif - } - QCoreApplication::instance()->setOrganizationName("Qt"); - QCoreApplication::instance()->setApplicationName("QtTest"); - { - const QString base = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); - const QString app = QDesktopServices::storageLocation(QDesktopServices::DataLocation); -#ifdef Q_XDG_PLATFORM - QCOMPARE(app, base + "/data/Qt/QtTest"); -#else - QCOMPARE(app, base + "/Qt/QtTest"); -#endif - } -} -#endif - QTEST_MAIN(tst_qdesktopservices) #include "tst_qdesktopservices.moc" -- cgit v1.2.3