aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/command.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-02-07 18:02:53 +0100
committerhjk <hjk@qt.io>2023-02-08 07:34:30 +0000
commit432d918329d873e4b89b07670312e63d4121ba99 (patch)
treeb300349e615114a9c7e4490e8e109d99bfa7f327 /src/plugins/texteditor/command.cpp
parent012a2a6cd828188837a1d9d2b060e8718c7e2775 (diff)
TextEditor: Use FilePath in Command
Change-Id: I0916204eefb49713f241dd43da662f258f8c99f7 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/texteditor/command.cpp')
-rw-r--r--src/plugins/texteditor/command.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/texteditor/command.cpp b/src/plugins/texteditor/command.cpp
index 6da71ccfff..ca5cdfb02d 100644
--- a/src/plugins/texteditor/command.cpp
+++ b/src/plugins/texteditor/command.cpp
@@ -10,12 +10,12 @@ bool Command::isValid() const
return !m_executable.isEmpty();
}
-QString Command::executable() const
+Utils::FilePath Command::executable() const
{
return m_executable;
}
-void Command::setExecutable(const QString &executable)
+void Command::setExecutable(const Utils::FilePath &executable)
{
m_executable = executable;
}