diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-05-21 12:05:48 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-05-21 12:05:48 +0200 |
commit | 78325dc56078f7991068eb7b2dbe0e25ab7dc924 (patch) | |
tree | 8c0e3f35567770cc5e5767811d5121e21b7209bf /src/mainview.cpp | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-78325dc56078f7991068eb7b2dbe0e25ab7dc924.tar.xz |
inlined some of the most used get functions
to speed up a bit
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 58247d53..1c36adcf 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -35,7 +35,6 @@ #include "rekonq.h" // Local Includes -#include "webtab.h" #include "tabbar.h" #include "urlbar.h" #include "sessionmanager.h" @@ -166,12 +165,6 @@ void MainView::updateTabButtonPosition() } -QToolButton *MainView::addTabButton() const -{ - return m_addTabButton; -} - - TabBar *MainView::tabBar() const { TabBar *tabBar = qobject_cast<TabBar *>(KTabWidget::tabBar()); @@ -185,12 +178,6 @@ UrlBar *MainView::urlBar() const } -StackedUrlBar *MainView::widgetBar() const -{ - return _widgetBar; -} - - WebTab *MainView::currentWebTab() const { return webTab(currentIndex()); @@ -693,12 +680,6 @@ QLabel *MainView::animatedLoading(int index, bool addMovie) } -QList<HistoryItem> MainView::recentlyClosedTabs() -{ - return m_recentlyClosedTabs; -} - - void MainView::resizeEvent(QResizeEvent *event) { updateTabBar(); |