aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qtsupport/qscxmlcgenerator.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-28 13:49:26 +0200
committerhjk <hjk@qt.io>2019-05-28 12:23:26 +0000
commit473a741c9fcf09febba312464fab8385e2351181 (patch)
tree2d328a090993cb5c5fd34b43e9468bcbf7e4d4d0 /src/plugins/qtsupport/qscxmlcgenerator.h
parent4704f49fbb1201ebf10ab9dbaed0275ff25faba8 (diff)
Utils: Rename FileName to FilePath
More in line with QFileInfo terminonlogy which appears to be best-of-breed within Qt. Change-Id: I1d051ff1c8363ebd4ee56376451df45216c4c9ab Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/qtsupport/qscxmlcgenerator.h')
-rw-r--r--src/plugins/qtsupport/qscxmlcgenerator.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/qtsupport/qscxmlcgenerator.h b/src/plugins/qtsupport/qscxmlcgenerator.h
index 49cd1dd2cb1..37c7617ed6a 100644
--- a/src/plugins/qtsupport/qscxmlcgenerator.h
+++ b/src/plugins/qtsupport/qscxmlcgenerator.h
@@ -37,16 +37,16 @@ class QScxmlcGenerator : public ProjectExplorer::ProcessExtraCompiler
{
Q_OBJECT
public:
- QScxmlcGenerator(const ProjectExplorer::Project *project, const Utils::FileName &source,
- const Utils::FileNameList &targets, QObject *parent = 0);
+ QScxmlcGenerator(const ProjectExplorer::Project *project, const Utils::FilePath &source,
+ const Utils::FilePathList &targets, QObject *parent = 0);
protected:
- Utils::FileName command() const override;
+ Utils::FilePath command() const override;
QStringList arguments() const override;
- Utils::FileName workingDirectory() const override;
+ Utils::FilePath workingDirectory() const override;
private:
- Utils::FileName tmpFile() const;
+ Utils::FilePath tmpFile() const;
ProjectExplorer::FileNameToContentsHash handleProcessFinished(QProcess *process) override;
bool prepareToRun(const QByteArray &sourceContents) override;
ProjectExplorer::Tasks parseIssues(const QByteArray &processStderr) override;
@@ -67,8 +67,8 @@ public:
QString sourceTag() const override;
ProjectExplorer::ExtraCompiler *create(const ProjectExplorer::Project *project,
- const Utils::FileName &source,
- const Utils::FileNameList &targets) override;
+ const Utils::FilePath &source,
+ const Utils::FilePathList &targets) override;
};
} // QtSupport