androidtestrunner: Fix warnings about missing parameter to QStringLiteral
Use QString instead, fixing: src\tools\androidtestrunner\main.cpp(474): warning C4003: not enough arguments for function-like macro invocation 'QStringLiteral' Change-Id: I88b8c0f1dfa7828460e8952510e3d4150ab68896 Reviewed-by: BogDan Vatra <bogdan@kdab.com>bb10
parent
65ea4948dc
commit
0c4e502b56
|
|
@ -460,7 +460,7 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
// Run androiddeployqt
|
||||
static auto verbose = g_options.verbose ? QStringLiteral("--verbose") : QStringLiteral();
|
||||
static auto verbose = g_options.verbose ? QStringLiteral("--verbose") : QString();
|
||||
if (!execCommand(QStringLiteral("%1 %3 --reinstall --output %2 --apk %4").arg(g_options.androidDeployQtCommand,
|
||||
g_options.buildPath,
|
||||
verbose,
|
||||
|
|
|
|||
Loading…
Reference in New Issue