aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-02-19 08:32:56 +0100
committerhjk <hjk@qt.io>2020-02-19 07:43:44 +0000
commit006da25949f870f82525066f39d557216f6ba101 (patch)
treee143e3c1513ba6187eb4795414fcecece89e6306 /src/plugins/boot2qt
parentee05e49f796ecb4624d22650bbe112fcfbacfc20 (diff)
Boot2Qt: Adapt to QProcess::startDetached() deprecation
Change-Id: I2793c4298ddc30831454de8664a8ccd8e8678bd5 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/boot2qt')
-rw-r--r--src/plugins/boot2qt/qdbplugin.cpp2
1 files changed, 1 insertions, 1 deletions
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 =