Dolphin[Qt|WX]: Miscellaneous cleanup.

DolphinQt:
 * Make the connect() calls explicit, not automatic
 * Follow better naming convention for the QActions
 * Remove the Open action from the toolbar.
Dolphin[Qt|WX]:
 * Move the "Skip Bundle" option to the root CMakeLists so that both DolphinQt and DolphinWX can use it.
This commit is contained in:
Augustin Cavalier
2014-11-05 20:53:34 -05:00
parent 4cf8697957
commit a96acea03c
5 changed files with 73 additions and 50 deletions

View File

@ -39,16 +39,16 @@ private slots:
void OnCoreStateChanged(Core::EState state);
// Main toolbar
void on_actOpen_triggered();
void on_actPlay_triggered();
void on_actStop_triggered();
void OnOpen();
void OnPlay();
void OnStop();
// Help menu
void on_actWebsite_triggered();
void on_actOnlineDocs_triggered();
void on_actGitHub_triggered();
void on_actSystemInfo_triggered();
void on_actAbout_triggered();
void OnOpenWebsite();
void OnOpenDocs();
void OnOpenGitHub();
void OnOpenSystemInfo();
void OnOpenAbout();
// Misc.
void UpdateIcons();