diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-01-22 14:47:33 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-01-22 15:28:50 +0100 |
commit | f0219813d58c0708b48992dd1313d594aa773ac0 (patch) | |
tree | c46292e70cf6f9927c29381e58c7891a88e25612 /src/qt/bitcoingui.h | |
parent | fe87b207177a3faf265693b991bc9d8d61e112a0 (diff) |
[Qt] move helpmessage from debug window to main menu
- the option to show our help message dialog resides now in main menu
under help
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index d5bbdca484..4dce4431ba 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -93,6 +93,7 @@ private: QAction *aboutQtAction; QAction *openRPCConsoleAction; QAction *openAction; + QAction *showHelpMessageAction; QSystemTrayIcon *trayIcon; Notificator *notificator; @@ -176,6 +177,8 @@ private slots: void optionsClicked(); /** Show about dialog */ void aboutClicked(); + /** Show help message dialog */ + void showHelpMessageClicked(); #ifndef Q_OS_MAC /** Handle tray icon clicked */ void trayIconActivated(QSystemTrayIcon::ActivationReason reason); |