Disable use of Qt APIs deprecated in 5.15.0 and earlier versions (#4133)

This commit is contained in:
kornes
2022-11-10 19:11:40 +00:00
committed by GitHub
parent 3303cdc0cb
commit fbfa5e0f41
21 changed files with 36 additions and 36 deletions
+2 -1
View File
@@ -90,7 +90,8 @@ bool openLinkIncognito(const QString &link)
#ifdef Q_OS_WIN
auto command = getCommand(link);
return QProcess::startDetached(command);
// TODO: split command into program path and incognito argument
return QProcess::startDetached(command, {});
#else
return false;
#endif