aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprojectmanager/qmlproject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlproject.h')
-rw-r--r--src/plugins/qmlprojectmanager/qmlproject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlproject.h b/src/plugins/qmlprojectmanager/qmlproject.h
index c04e83d63b1..b3ce817f19f 100644
--- a/src/plugins/qmlprojectmanager/qmlproject.h
+++ b/src/plugins/qmlprojectmanager/qmlproject.h
@@ -45,7 +45,7 @@ class QMLPROJECTMANAGER_EXPORT QmlProject : public ProjectExplorer::Project
Q_OBJECT
public:
- explicit QmlProject(const Utils::FileName &filename);
+ explicit QmlProject(const Utils::FilePath &filename);
~QmlProject() override;
ProjectExplorer::Tasks projectIssues(const ProjectExplorer::Kit *k) const final;
@@ -62,11 +62,11 @@ public:
void refresh(RefreshOptions options);
- Utils::FileName canonicalProjectDir() const;
+ Utils::FilePath canonicalProjectDir() const;
QString mainFile() const;
void setMainFile(const QString &mainFilePath);
- Utils::FileName targetDirectory(const ProjectExplorer::Target *target) const;
- Utils::FileName targetFile(const Utils::FileName &sourceFile,
+ Utils::FilePath targetDirectory(const ProjectExplorer::Target *target) const;
+ Utils::FilePath targetFile(const Utils::FilePath &sourceFile,
const ProjectExplorer::Target *target) const;
QList<Utils::EnvironmentItem> environment() const;
@@ -79,7 +79,7 @@ public:
bool needsBuildConfigurations() const final;
- static QStringList makeAbsolute(const Utils::FileName &path, const QStringList &relativePaths);
+ static QStringList makeAbsolute(const Utils::FilePath &path, const QStringList &relativePaths);
QVariant additionalData(Core::Id id, const ProjectExplorer::Target *target) const override;
@@ -103,7 +103,7 @@ private:
ProjectExplorer::Target *m_activeTarget = nullptr;
QPointer<QmlProjectItem> m_projectItem;
- Utils::FileName m_canonicalProjectDir;
+ Utils::FilePath m_canonicalProjectDir;
};
} // namespace QmlProjectManager