Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/Diceware.cpp')
-rw-r--r--src/cli/Diceware.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cli/Diceware.cpp b/src/cli/Diceware.cpp
index bb7931352..be1ac084f 100644
--- a/src/cli/Diceware.cpp
+++ b/src/cli/Diceware.cpp
@@ -43,11 +43,13 @@ int Diceware::execute(const QStringList& arguments)
QCommandLineParser parser;
parser.setApplicationDescription(description);
- QCommandLineOption words(QStringList() << "W" << "words",
+ QCommandLineOption words(QStringList() << "W"
+ << "words",
QObject::tr("Word count for the diceware passphrase."),
QObject::tr("count", "CLI parameter"));
parser.addOption(words);
- QCommandLineOption wordlistFile(QStringList() << "w" << "word-list",
+ QCommandLineOption wordlistFile(QStringList() << "w"
+ << "word-list",
QObject::tr("Wordlist for the diceware generator.\n[Default: EFF English]"),
QObject::tr("path"));
parser.addOption(wordlistFile);