summaryrefslogtreecommitdiff
path: root/src/tabwindow/tabwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-08-01 11:35:06 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:04 +0100
commit4b24758d7230504daedc3d537f233f02244641bb (patch)
tree27206d0a12e5052d7b4bffe76b48e1e1cca31985 /src/tabwindow/tabwindow.cpp
parentLet WebTab compile (and everything NOT commented out...) (diff)
downloadrekonq-4b24758d7230504daedc3d537f233f02244641bb.tar.xz
Clean up WebWindow inserting the WebTab there.
Diffstat (limited to 'src/tabwindow/tabwindow.cpp')
-rw-r--r--src/tabwindow/tabwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabwindow/tabwindow.cpp b/src/tabwindow/tabwindow.cpp
index cce684cf..3e479bdf 100644
--- a/src/tabwindow/tabwindow.cpp
+++ b/src/tabwindow/tabwindow.cpp
@@ -285,7 +285,7 @@ void TabWindow::tabTitleChanged(const QString &title)
bool emptyTitle = title.isEmpty();
- QString tabTitle = emptyTitle ? tab->url().toString() : title;
+ QString tabTitle = emptyTitle ? tab->url().url() : title;
tabTitle.replace('&', "&&");
int index = indexOf(tab);
@@ -405,7 +405,7 @@ void TabWindow::closeTab(int index, bool del)
const int recentlyClosedTabsLimit = 8;
TabHistory history(tabToClose->page()->history());
history.title = tabToClose->title();
- history.url = tabToClose->url().toString();
+ history.url = tabToClose->url().url();
m_recentlyClosedTabs.removeAll(history);
if (m_recentlyClosedTabs.count() == recentlyClosedTabsLimit)