This commit is contained in:
Martin Rotter 2021-05-24 07:51:39 +02:00
parent 239a0d2f7e
commit 209edaa8f1
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ void Application::parseCmdArgumentsFromOtherInstance(const QString& message) {
#if QT_VERSION >= 0x050F00 // Qt >= 5.15.0
QStringList messages = message.split(ARGUMENTS_LIST_SEPARATOR, Qt::SplitBehaviorFlags::SkipEmptyParts);
#else
QStringList messages = message.split(ARGUMENTS_LIST_SEPARATOR, QString::SplitBehaviorFlags::SkipEmptyParts);
QStringList messages = message.split(ARGUMENTS_LIST_SEPARATOR, QString::SplitBehavior::SkipEmptyParts);
#endif
QCommandLineParser cmd_parser;