summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qtpaths/qtpaths.cpp20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/qtpaths/qtpaths.cpp b/src/qtpaths/qtpaths.cpp
index 340a2ac43..eaff69e83 100644
--- a/src/qtpaths/qtpaths.cpp
+++ b/src/qtpaths/qtpaths.cpp
@@ -89,20 +89,26 @@ static const struct StringEnum {
const char *stringvalue;
QStandardPaths::StandardLocation enumvalue;
} lookupTableData[] = {
+ { "AppConfigLocation", QStandardPaths::AppConfigLocation },
+ { "AppDataLocation", QStandardPaths::AppDataLocation },
+ { "AppLocalDataLocation", QStandardPaths::AppLocalDataLocation },
{ "ApplicationsLocation", QStandardPaths::ApplicationsLocation },
+ { "CacheLocation", QStandardPaths::CacheLocation },
+ { "ConfigLocation", QStandardPaths::ConfigLocation },
+ { "DataLocation", QStandardPaths::DataLocation },
{ "DesktopLocation", QStandardPaths::DesktopLocation },
{ "DocumentsLocation", QStandardPaths::DocumentsLocation },
+ { "DownloadLocation", QStandardPaths::DownloadLocation },
{ "FontsLocation", QStandardPaths::FontsLocation },
- { "MusicLocation", QStandardPaths::MusicLocation },
- { "MoviesLocation", QStandardPaths::MoviesLocation },
- { "PicturesLocation", QStandardPaths::PicturesLocation },
- { "HomeLocation", QStandardPaths::HomeLocation },
{ "GenericCacheLocation", QStandardPaths::GenericCacheLocation },
+ { "GenericConfigLocation", QStandardPaths::GenericConfigLocation },
{ "GenericDataLocation", QStandardPaths::GenericDataLocation },
+ { "HomeLocation", QStandardPaths::HomeLocation },
+ { "MoviesLocation", QStandardPaths::MoviesLocation },
+ { "MusicLocation", QStandardPaths::MusicLocation },
+ { "PicturesLocation", QStandardPaths::PicturesLocation },
{ "RuntimeLocation", QStandardPaths::RuntimeLocation },
- { "ConfigLocation", QStandardPaths::ConfigLocation },
- { "GenericConfigLocation", QStandardPaths::GenericConfigLocation },
- { "DownloadLocation", QStandardPaths::DownloadLocation }
+ { "TempLocation", QStandardPaths::TempLocation }
};
/**