summaryrefslogtreecommitdiff
path: root/src/mainview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-10 18:57:01 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-10 18:57:01 +0200
commit6d37e632d445b51f5321b4138dcd1fce0cae30f9 (patch)
tree0802d82262600af121d1e522bb2dfe926e661b4f /src/mainview.h
parentPorted to rekonq coding style (diff)
downloadrekonq-6d37e632d445b51f5321b4138dcd1fce0cae30f9.tar.xz
Fixed webview API
Removed some unuseful comments
Diffstat (limited to 'src/mainview.h')
-rw-r--r--src/mainview.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainview.h b/src/mainview.h
index 41543b65..96417d4f 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -100,11 +100,11 @@ protected:
public slots:
void loadUrlInCurrentTab(const KUrl &url);
WebView *newWebView(bool makeCurrent = true);
- void cloneTab(int index = -1);
- void closeTab(int index = -1);
- void closeOtherTabs(int index);
- void reloadTab(int index = -1);
- void reloadAllTabs();
+ void slotCloneTab(int index = -1);
+ void slotCloseTab(int index = -1);
+ void slotCloseOtherTabs(int index);
+ void slotReloadTab(int index = -1);
+ void slotReloadAllTabs();
void nextTab();
void previousTab();
@@ -120,7 +120,7 @@ public slots:
void slotWebPaste();
private slots:
- void currentChanged(int index);
+ void slotCurrentChanged(int index);
void aboutToShowRecentTabsMenu();
void aboutToShowRecentTriggeredAction(QAction *action); // need QAction!
void webViewLoadStarted();
@@ -129,7 +129,7 @@ private slots:
void webViewUrlChanged(const QUrl &url);
void lineEditReturnPressed();
void windowCloseRequested();
- void moveTab(int fromIndex, int toIndex);
+ void slotMoveTab(int fromIndex, int toIndex);
private: