[Qt] move helpmessage from debug window to main menu

- the option to show our help message dialog resides now in main menu
  under help
This commit is contained in:
Philip Kaufmann
2014-01-22 14:47:33 +01:00
parent fe87b20717
commit f0219813d5
5 changed files with 16 additions and 37 deletions

View File

@@ -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);