aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/jsonwizard
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-06-26 17:09:35 +0200
committerhjk <hjk@qt.io>2019-06-26 16:02:23 +0000
commite7c6169d70fac97cb0702cac8a4aadab6f90939b (patch)
tree29e73b4791c1e4bcce0b49f00b1561c21851499e /src/plugins/projectexplorer/jsonwizard
parentf878486fcbf0c14d668c46247a0b45143628c0e0 (diff)
ProjectExplorer etc: More FilePath usage
Mostly for project files. Change-Id: Icb6059f80758865e42cc9f9c092ec6782770dfd7 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/jsonwizard')
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonkitspage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonkitspage.cpp b/src/plugins/projectexplorer/jsonwizard/jsonkitspage.cpp
index 7501521be7..c74f3a2f51 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonkitspage.cpp
+++ b/src/plugins/projectexplorer/jsonwizard/jsonkitspage.cpp
@@ -65,7 +65,7 @@ void JsonKitsPage::initializePage()
setPreferredKitPredicate([platform, preferred](const Kit *k) {
return k->supportedPlatforms().contains(platform) && k->hasFeatures(preferred);
});
- setProjectPath(wiz->expander()->expand(unexpandedProjectPath()));
+ setProjectPath(wiz->expander()->expand(Utils::FilePath::fromString(unexpandedProjectPath())));
TargetSetupPage::initializePage();
}