diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-02-15 16:54:55 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-03-18 06:44:33 +0100 |
commit | 591b4c3cb201c3d405f4a0a168c65bfe83325c0c (patch) | |
tree | 42027d42ceda96ead0711388e23908e1dd7c8d36 /src/mainview.cpp | |
parent | fixuifiles (diff) | |
download | rekonq-591b4c3cb201c3d405f4a0a168c65bfe83325c0c.tar.xz |
New History Manager, NO MORE QWebHistoryInterface based.
We are just saving datas on our own, I don't like QtWebKit APIs
to do it. We now call addHistoryEntry(url, title)
on loadFinished.
Data structure will remain the same as usual, but I think API
is better and data are now saved when we really have them
ready.
REVIEW:104257
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index b164c72b..ec838ff4 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -615,7 +615,6 @@ void MainView::webViewTitleChanged(const QString &title) tabBar()->setTabHighlighted(index); } - rApp->historyManager()->updateHistoryEntry(tab->url(), tabTitle); if (ReKonfig::hoveringTabOption() == 1) tabBar()->setTabToolTip(index, tabTitle.remove('&')); } |