diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 19:18:15 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 19:18:15 +0200 |
commit | 841389f9389a04231920fe7a7b07358fa454b7ff (patch) | |
tree | 91111da265ae21493b50f7efc9f243258f454f07 | |
parent | Fixed lineEdits tabs movements (each site, its url..) (diff) | |
download | rekonq-841389f9389a04231920fe7a7b07358fa454b7ff.tar.xz |
Added some functions comment
-rw-r--r-- | src/mainview.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h index 617d81db..6514c026 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -98,8 +98,12 @@ protected: public slots: - void loadUrlInCurrentTab(const KUrl &url); + /** + * Core browser slot. This create a new tab with a WebView inside + * for browsing. + */ WebView *newWebView(); + void loadUrlInCurrentTab(const KUrl &url); void slotCloneTab(int index = -1); void slotCloseTab(int index = -1); void slotCloseOtherTabs(int index); @@ -132,6 +136,9 @@ private slots: private: + /** + * this functions move tab informations "from index to index" + */ void moveTab(int fromIndex, int toIndex); KAction *m_recentlyClosedTabsAction; |