diff options
author | David Faure <faure@kde.org> | 2012-03-24 09:23:25 +0100 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-03-24 19:07:22 +0100 |
commit | 518a4cb5abdca788c4bb59e570e97c01e44587c8 (patch) | |
tree | 96160c719612cd133a0abc2af316a945e12c5289 /src/gui/util/qdesktopservices.h | |
parent | ad81f75429f6c5586d667880f90f4a425f1ce968 (diff) |
Diffstat (limited to 'src/gui/util/qdesktopservices.h')
-rw-r--r-- | src/gui/util/qdesktopservices.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/util/qdesktopservices.h b/src/gui/util/qdesktopservices.h index 04a639437e..280acaf277 100644 --- a/src/gui/util/qdesktopservices.h +++ b/src/gui/util/qdesktopservices.h @@ -79,12 +79,14 @@ public: }; QT_DEPRECATED static QString storageLocation(StandardLocation type) { - return QStandardPaths::writableLocation(static_cast<QStandardPaths::StandardLocation>(type)); + return storageLocationImpl(type); } QT_DEPRECATED static QString displayName(StandardLocation type) { return QStandardPaths::displayName(static_cast<QStandardPaths::StandardLocation>(type)); } #endif +private: + static QString storageLocationImpl(StandardLocation type); }; #endif // QT_NO_DESKTOPSERVICES |