summaryrefslogtreecommitdiff
path: root/src/plugins/genericprojectmanager/filesselectionwizardpage.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-03 13:03:39 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-13 10:55:44 +0000
commite4841600815018c419858c3502e80ed28b8d60d7 (patch)
tree70ca023940bfb865fe412a2198cb2f25091435f3 /src/plugins/genericprojectmanager/filesselectionwizardpage.h
parent26c872f3e6a5fa0d40a434d5c6cff024d3b9885e (diff)
downloadqt-creator-e4841600815018c419858c3502e80ed28b8d60d7.tar.gz
SelectableFilesModel: Use Utils::FileName
* Fix fallout caused by that Change-Id: If1f068b060b414402918118a826a0f9405c976cd Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/plugins/genericprojectmanager/filesselectionwizardpage.h')
-rw-r--r--src/plugins/genericprojectmanager/filesselectionwizardpage.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/genericprojectmanager/filesselectionwizardpage.h b/src/plugins/genericprojectmanager/filesselectionwizardpage.h
index f3c8c2f30c..a5cbdcfda9 100644
--- a/src/plugins/genericprojectmanager/filesselectionwizardpage.h
+++ b/src/plugins/genericprojectmanager/filesselectionwizardpage.h
@@ -40,6 +40,7 @@ class QTreeView;
class QLineEdit;
QT_END_NAMESPACE
+namespace Utils { class FileName; }
namespace ProjectExplorer { class SelectableFilesModel; }
namespace GenericProjectManager {
@@ -56,12 +57,12 @@ public:
bool isComplete() const;
void initializePage();
void cleanupPage();
- QStringList selectedFiles() const;
- QStringList selectedPaths() const;
+ QList<Utils::FileName> selectedFiles() const;
+ QList<Utils::FileName> selectedPaths() const;
private slots:
void applyFilter();
- void parsingProgress(const QString &text);
+ void parsingProgress(const Utils::FileName &text);
void parsingFinished();
private: