diff options
author | Daniel Cousens <github@dcousens.com> | 2015-10-18 21:02:36 +1100 |
---|---|---|
committer | Daniel Cousens <github@dcousens.com> | 2015-10-22 00:07:30 +1100 |
commit | 3cb56f37780854bf26650e0872a556da25897a0a (patch) | |
tree | 96f6d3088a5205aeb5d181a8e80d43305dc3bc82 /src/qt | |
parent | d78a880900c15c7a28ae81e6632090f25fea7fce (diff) |
*: alias -h for --help
Diffstat (limited to 'src/qt')
-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 ea7f86d18e..86c820cd0f 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(); |