diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-04-20 23:31:41 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-04-20 23:31:41 +0200 |
commit | 19eb738f838bf214c9178a4f02464056137b0fa5 (patch) | |
tree | d73539d97dfad3cdb1a3e3c8b0567630ff2cb943 /src/mainview.cpp | |
parent | rekonq 0.9.56 (diff) | |
download | rekonq-19eb738f838bf214c9178a4f02464056137b0fa5.tar.xz |
Clean up headers && fix compilation with (the upcoming) qt 4.8.2
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 2da26db7..a7a34b84 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -36,6 +36,7 @@ // Local Includes #include "application.h" +#include "historymanager.h" #include "iconmanager.h" #include "mainwindow.h" #include "sessionmanager.h" @@ -138,6 +139,12 @@ WebTab *MainView::currentWebTab() const } +QList<TabHistory> MainView::recentlyClosedTabs() +{ + return m_recentlyClosedTabs; +} + + void MainView::updateTabBar() { if (ReKonfig::alwaysShowTabBar() || count() > 1) |