summaryrefslogtreecommitdiff
path: root/src/plugins/genericprojectmanager/filesselectionwizardpage.h
diff options
context:
space:
mode:
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: