From 12810f40be01fad3384c0ae1527d0a0f5a378886 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Mon, 19 Oct 2009 11:56:15 +0200 Subject: Porting recently closed tabs to use HistoryItem. This way we can have more useful infos about --- src/mainview.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/mainview.cpp') diff --git a/src/mainview.cpp b/src/mainview.cpp index dbd59e91..1848e682 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -420,8 +420,11 @@ void MainView::slotCloseTab(int index) //store close tab except homepage if (!tab->url().prettyUrl().startsWith("rekonq:") && !tab->url().isEmpty()) { - m_recentlyClosedTabs.removeAll(tab->url()); - m_recentlyClosedTabs.prepend(tab->url()); + QString title = tab->title(); + QString url = tab->url().prettyUrl(); + HistoryItem item(url, QDateTime::currentDateTime(), title); + m_recentlyClosedTabs.removeAll(item); + m_recentlyClosedTabs.prepend(item); } } @@ -582,7 +585,7 @@ QLabel *MainView::animatedLoading(int index, bool addMovie) } -KUrl::List MainView::recentlyClosedTabs() +QList MainView::recentlyClosedTabs() { return m_recentlyClosedTabs; } -- cgit v1.2.1