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>
bb10
Janne Anttila 2014-02-28 14:37:18 +02:00 committed by The Qt Project
parent 7bd7699e17
commit afcaaea4c6
1 changed files with 1 additions and 0 deletions

View File

@ -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;