aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/selectablefilesmodel.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-04-09 11:05:50 +0200
committerhjk <hjk@qt.io>2020-04-09 17:30:23 +0000
commit79b680e7f0b0ff5ecca9b17fabb11fd03947ec8f (patch)
treeec8f594ed02b1a55869ade473130efb806b20ca1 /src/plugins/projectexplorer/selectablefilesmodel.cpp
parent45ba9fcd535e4cfd5f057149b1ca4bb4dfed5bdb (diff)
Utils: Rename PathChooser::{f,setF}ileName() to {f,setF}ilePath()
It's returning a FilePath, so it's a better fit. Keep the old versions as inline function now to ease downstream migration. Change-Id: I535887928018f42b92895c8b0c82527f0d55e5ca Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'src/plugins/projectexplorer/selectablefilesmodel.cpp')
-rw-r--r--src/plugins/projectexplorer/selectablefilesmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/selectablefilesmodel.cpp b/src/plugins/projectexplorer/selectablefilesmodel.cpp
index 9351aa9898..4e524f2cad 100644
--- a/src/plugins/projectexplorer/selectablefilesmodel.cpp
+++ b/src/plugins/projectexplorer/selectablefilesmodel.cpp
@@ -563,7 +563,7 @@ SelectableFilesWidget::SelectableFilesWidget(QWidget *parent) :
connect(m_baseDirChooser, &Utils::PathChooser::validChanged,
this, &SelectableFilesWidget::baseDirectoryChanged);
connect(m_startParsingButton, &QAbstractButton::clicked,
- this, [this]() { startParsing(m_baseDirChooser->fileName()); });
+ this, [this]() { startParsing(m_baseDirChooser->filePath()); });
m_selectFilesFilterLabel->setText(tr("Select files matching:"));
m_selectFilesFilterEdit->setText(selectFilter);
@@ -645,7 +645,7 @@ void SelectableFilesWidget::resetModel(const Utils::FilePath &path, const Utils:
connect(m_model, &SelectableFilesModel::checkedFilesChanged,
this, &SelectableFilesWidget::selectedFilesChanged);
- m_baseDirChooser->setFileName(path);
+ m_baseDirChooser->setFilePath(path);
m_view->setModel(m_model);
startParsing(path);