diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-19 11:56:15 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-19 11:56:15 +0200 |
commit | 12810f40be01fad3384c0ae1527d0a0f5a378886 (patch) | |
tree | b03775518b8f4dd417041f59df1e8ab28071c704 /src/mainview.h | |
parent | Fixing rebase... (diff) | |
download | rekonq-12810f40be01fad3384c0ae1527d0a0f5a378886.tar.xz |
Porting recently closed tabs to use HistoryItem.
This way we can have more useful infos about
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainview.h b/src/mainview.h index 8c993a63..c2795048 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -34,6 +34,7 @@ #include "webview.h" #include "webpage.h" #include "application.h" +#include "history.h" // KDE Includes #include <KTabWidget> @@ -89,7 +90,7 @@ public: */ WebView *newWebView(bool focused = true, bool nearParent = false); - KUrl::List recentlyClosedTabs(); + QList<HistoryItem> recentlyClosedTabs(); signals: // tab widget signals @@ -159,7 +160,7 @@ private: int m_currentTabIndex; - KUrl::List m_recentlyClosedTabs; + QList<HistoryItem> m_recentlyClosedTabs; }; #endif // MAINVIEW_H |