diff options
author | Anton Kreuzkamp <akreuzkamp@web.de> | 2011-08-21 12:01:26 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-08-21 12:01:26 +0200 |
commit | a0315947c024a3be1d35b4700af7fa653272093e (patch) | |
tree | f9a95b5200e144ecb81b50e995fdfc2344dc2482 /src/mainview.h | |
parent | Fix saving in adblock management (diff) | |
download | rekonq-a0315947c024a3be1d35b4700af7fa653272093e.tar.xz |
Restore tab's history when restoring a tab/session
We finally have it :D
CCMAIL: akreuzkamp@web.de
REVIEW: 100604
REVIEWED-BY: adjam, elproxy
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainview.h b/src/mainview.h index 2ca3e9e7..ede1d62e 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -100,7 +100,7 @@ public: */ WebTab *newWebTab(bool focused = true); - inline QList<HistoryItem> recentlyClosedTabs() + inline QList<TabHistory> recentlyClosedTabs() { return m_recentlyClosedTabs; } @@ -199,7 +199,7 @@ private: int m_currentTabIndex; - QList<HistoryItem> m_recentlyClosedTabs; + QList<TabHistory> m_recentlyClosedTabs; MainWindow *m_parentWindow; }; |