summaryrefslogtreecommitdiff
path: root/src/mainview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-06-04 02:38:35 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-06-04 02:38:35 +0200
commitd44c64e440e8d551d528eeafef97407c77cd420a (patch)
treedc1a6e0cb478a027dc8e3ceb2d156154436bb089 /src/mainview.h
parenti18n fixes (diff)
downloadrekonq-d44c64e440e8d551d528eeafef97407c77cd420a.tar.xz
This should fix the Ctrl+w bug. Anyway, it really doesn't solve it: there is a corner case
where the trick implemented doesn't work. We'll see if someone can fix also that.. BUG:233937
Diffstat (limited to 'src/mainview.h')
-rw-r--r--src/mainview.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mainview.h b/src/mainview.h
index 636d37ac..f0a1982f 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -125,14 +125,17 @@ public slots:
*/
void newTab();
+ // Indexed slots
void cloneTab(int index = -1);
void closeTab(int index = -1, bool del = true);
- void closeOtherTabs(int index);
+ void closeOtherTabs(int index = -1);
void reloadTab(int index = -1);
+ void detachTab(int index = -1);
+
void reloadAllTabs();
void nextTab();
void previousTab();
- void detachTab(int index = -1);
+
void openClosedTabs();
void openClosedTab();
void switchToTab();