diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-22 17:51:13 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-22 17:53:07 +0200 |
commit | 2cd020d054d6ec4b50eb44ffa4000b40540a4db0 (patch) | |
tree | 21f35c08c8199f44974b5a3edc6f7c737fd09625 /src/qt/bitcoin.cpp | |
parent | a09297010e171af28a7a3fcad65a4e0aefea53ba (diff) | |
parent | 3cb56f37780854bf26650e0872a556da25897a0a (diff) |
Merge pull request #6846
3cb56f3 *: alias -h for --help (Daniel Cousens)
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 89d2d44fd7..bda8acff15 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -563,7 +563,7 @@ int main(int argc, char *argv[]) // Show help message immediately after parsing command-line options (for "-lang") and setting locale, // but before showing splash screen. - if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) + if (mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) { HelpMessageDialog help(NULL, mapArgs.count("-version")); help.showOrPrint(); |