forked from qt-creator/qt-creator
Replace remaining Utils::FileName occurrences by Utils::FilePath
Change-Id: Ic3120f18b4fbe90219de9128dba53d7453630b03 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -106,10 +106,10 @@ void PerfTracePointDialog::runScript()
|
||||
Runnable runnable;
|
||||
const QString elevate = m_ui->privilegesChooser->currentText();
|
||||
if (elevate != QLatin1String("n.a.")) {
|
||||
runnable.executable = Utils::FileName::fromString(elevate);
|
||||
runnable.executable = Utils::FilePath::fromString(elevate);
|
||||
runnable.commandLineArguments = "sh";
|
||||
} else {
|
||||
runnable.executable = Utils::FileName::fromString("sh");
|
||||
runnable.executable = Utils::FilePath::fromString("sh");
|
||||
}
|
||||
|
||||
connect(m_process.get(), &DeviceProcess::started,
|
||||
|
||||
Reference in New Issue
Block a user