Fix wrong command line argument name

Reviewed by David Edmundson
This commit is contained in:
Aleix Pol 2019-03-20 15:12:45 +01:00
parent 7b13393b64
commit ba22fe0d43

View file

@ -450,7 +450,7 @@ int main(int argc, char * argv[])
QCommandLineOption outputCountOption(QStringLiteral("output-count"),
i18n("The number of windows to open as outputs in windowed mode. Default value is 1"),
QStringLiteral("height"));
QStringLiteral("count"));
outputCountOption.setDefaultValue(QString::number(1));
QCommandLineParser parser;