aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/projectintropage.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-04-09 11:35:12 +0200
committerhjk <hjk@qt.io>2020-04-09 17:45:06 +0000
commit68c539bb9d697a1496b41af8efa939e1fe1f9715 (patch)
tree03056243a1c63924592e7042d07ed414ef2c6195 /src/libs/utils/projectintropage.cpp
parent79b680e7f0b0ff5ecca9b17fabb11fd03947ec8f (diff)
Utils: Replace FileChooser::path() by filePath().toString()
Keep the old method for now to ease downstream porting. The change is kept mechanical, there's a lot of cleanup possible now on the user code side. Change-Id: I936baedd45b7ba057f1c789a1bec896886f48eff Reviewed-by: André Hartmann <aha_1980@gmx.de> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/libs/utils/projectintropage.cpp')
-rw-r--r--src/libs/utils/projectintropage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/projectintropage.cpp b/src/libs/utils/projectintropage.cpp
index a98095b3d91..ac172f4078a 100644
--- a/src/libs/utils/projectintropage.cpp
+++ b/src/libs/utils/projectintropage.cpp
@@ -116,7 +116,7 @@ QString ProjectIntroPage::projectName() const
QString ProjectIntroPage::path() const
{
- return d->m_ui.pathChooser->path();
+ return d->m_ui.pathChooser->filePath().toString();
}
void ProjectIntroPage::setPath(const QString &path)