forked from qt-creator/qt-creator
Squish: Fix wrong condition
Change-Id: Ic816a96202de710d1ff011ec489f066f98d2f7e5 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -20,7 +20,7 @@ static QByteArray startApplication(Language language,
|
||||
: application;
|
||||
QStringList parameters;
|
||||
parameters << app;
|
||||
if (args.isEmpty())
|
||||
if (!args.isEmpty())
|
||||
parameters << QString(args).replace('"', "\\\"");
|
||||
|
||||
switch (language) {
|
||||
|
Reference in New Issue
Block a user