Skip to content

Commit b8c110c

Browse files
authored
fixed #13238 - GUI: Fix start application with Qt6 (#6931)
1 parent 9287d3f commit b8c110c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

gui/resultstree.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -1028,14 +1028,22 @@ void ResultsTree::startApplication(const QStandardItem *target, int application)
10281028
}
10291029
#endif // Q_OS_WIN
10301030

1031+
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
10311032
const QString cmdLine = QString("%1 %2").arg(program).arg(params);
1033+
#endif
10321034

10331035
// this is reported as deprecated in Qt 5.15.2 but no longer in Qt 6
10341036
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
10351037
SUPPRESS_WARNING_CLANG_PUSH("-Wdeprecated")
10361038
SUPPRESS_WARNING_GCC_PUSH("-Wdeprecated-declarations")
10371039
#endif
1040+
1041+
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
10381042
const bool success = QProcess::startDetached(cmdLine);
1043+
#else
1044+
const bool success = QProcess::startDetached(program, QProcess::splitCommand(params));
1045+
#endif
1046+
10391047
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
10401048
SUPPRESS_WARNING_GCC_POP
10411049
SUPPRESS_WARNING_CLANG_POP

0 commit comments

Comments
 (0)