forked from qt-creator/qt-creator
TextEditor: Use FilePath in Command
Change-Id: I0916204eefb49713f241dd43da662f258f8c99f7 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user