summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qstandardpaths_winrt.cpp
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2014-02-28 14:37:18 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-14 15:26:45 +0100
commitafcaaea4c6f4e71e051ed5e00d38f7f4d9890719 (patch)
tree4427c5dc6c4be8617ddf05b90a13cd006404abe3 /src/corelib/io/qstandardpaths_winrt.cpp
parent7bd7699e172b91527f927957077c148675f9f332 (diff)
Implement QStandardPaths::GenericConfigLocation for WinRT.
Same logic for locaton used as in other Windows variants. Change-Id: I5f71710d28ea1338748c9bd41d48bba15e674baa Reviewed-by: Andrew Knight <andrew.knight@digia.com> Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
Diffstat (limited to 'src/corelib/io/qstandardpaths_winrt.cpp')
-rw-r--r--src/corelib/io/qstandardpaths_winrt.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/io/qstandardpaths_winrt.cpp b/src/corelib/io/qstandardpaths_winrt.cpp
index 9b6a088a30..bd72de11bb 100644
--- a/src/corelib/io/qstandardpaths_winrt.cpp
+++ b/src/corelib/io/qstandardpaths_winrt.cpp
@@ -74,6 +74,7 @@ QString QStandardPaths::writableLocation(StandardLocation type)
switch (type) {
case ConfigLocation: // same as DataLocation, on Windows
+ case GenericConfigLocation: // same as GenericDataLocation, on Windows
case DataLocation:
case GenericDataLocation: {
ComPtr<IApplicationDataStatics> applicationDataStatics;