summaryrefslogtreecommitdiffstats
path: root/src/gui/util/qdesktopservices.h
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2012-03-24 09:23:25 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-24 19:07:22 +0100
commit518a4cb5abdca788c4bb59e570e97c01e44587c8 (patch)
tree96160c719612cd133a0abc2af316a945e12c5289 /src/gui/util/qdesktopservices.h
parentad81f75429f6c5586d667880f90f4a425f1ce968 (diff)
Restore Qt4 compat in QDesktopServices::DataLocation
"/data/" was appended to the base directory. Change-Id: I220f2ce74c36b795bc49c7c84106feb0709d1547 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/gui/util/qdesktopservices.h')
-rw-r--r--src/gui/util/qdesktopservices.h4
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