aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/command.cpp
diff options
context:
space:
mode:
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;
}