diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 15:20:49 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 15:20:49 +0100 |
commit | 64cac4862842c7efa2dc7591ab5b672255e49e4c (patch) | |
tree | c0ea60adb6761b738315a04d82008c8c15f15f27 /src/mainview.h | |
parent | fixing new mainWindow() behaviour, porting functions calling it (diff) | |
download | rekonq-64cac4862842c7efa2dc7591ab5b672255e49e4c.tar.xz |
(BIG commit) API change
I fixed rekonq API removing all slotName call switching to
a proper getter call (so, name() functions)
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mainview.h b/src/mainview.h index 3ddd9e24..9c8a24aa 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -121,20 +121,20 @@ public slots: */ void newTab(); - void slotCloneTab(int index = -1); - void slotCloseTab(int index = -1); - void slotCloseOtherTabs(int index); - void slotReloadTab(int index = -1); - void slotReloadAllTabs(); + void cloneTab(int index = -1); + void closeTab(int index = -1); + void closeOtherTabs(int index); + void reloadTab(int index = -1); + void reloadAllTabs(); void nextTab(); void previousTab(); // WEB slot actions - void slotWebReload(); - void slotWebStop(); + void webReload(); + void webStop(); private slots: - void slotCurrentChanged(int index); + void currentChanged(int index); void webViewLoadStarted(); void webViewLoadFinished(bool ok); |