This commit is contained in:
Martin Rotter 2021-05-24 07:51:39 +02:00
parent 239a0d2f7e
commit 209edaa8f1

View file

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