ProjectExplorer: Use Utils::FileName for Runnable::executable

Change-Id: I584bc18aa19a4c9886af7b13e95052dfd4350b34
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2019-06-20 17:19:12 +02:00
parent 18eb0b39c5
commit 1396c6e8e9
57 changed files with 171 additions and 173 deletions

View File

@@ -73,7 +73,7 @@ void Slog2InfoRunner::printMissingWarning()
void Slog2InfoRunner::start()
{
Runnable r;
r.executable = QLatin1String("slog2info");
r.executable = Utils::FilePath::fromString("slog2info");
m_testProcess->start(r);
reportStarted();
}
@@ -111,7 +111,7 @@ void Slog2InfoRunner::handleTestProcessCompleted()
void Slog2InfoRunner::readLaunchTime()
{
Runnable r;
r.executable = QLatin1String("date");
r.executable = Utils::FilePath::fromString("date");
r.commandLineArguments = QLatin1String("+\"%d %H:%M:%S\"");
m_launchDateTimeProcess->start(r);
}
@@ -128,7 +128,7 @@ void Slog2InfoRunner::launchSlog2Info()
QString::fromLatin1("dd HH:mm:ss"));
Runnable r;
r.executable = QLatin1String("slog2info");
r.executable = Utils::FilePath::fromString("slog2info");
r.commandLineArguments = QLatin1String("-w");
m_logProcess->start(r);
}