From 006da25949f870f82525066f39d557216f6ba101 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 19 Feb 2020 08:32:56 +0100 Subject: [PATCH] Boot2Qt: Adapt to QProcess::startDetached() deprecation Change-Id: I2793c4298ddc30831454de8664a8ccd8e8678bd5 Reviewed-by: Eike Ziller --- src/plugins/boot2qt/qdbplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/boot2qt/qdbplugin.cpp b/src/plugins/boot2qt/qdbplugin.cpp index 81a2fc80d05..cad10b8ce0e 100644 --- a/src/plugins/boot2qt/qdbplugin.cpp +++ b/src/plugins/boot2qt/qdbplugin.cpp @@ -71,7 +71,7 @@ static void startFlashingWizard() if (Utils::HostOsInfo::isWindowsHost()) { if (QProcess::startDetached(QLatin1String("explorer.exe"), {filePath})) return; - } else if (QProcess::startDetached(filePath)) { + } else if (QProcess::startDetached(filePath, {})) { return; } const QString message =