diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-28 19:24:19 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-28 19:24:19 +0200 |
commit | f0c11eadaa4b77a4e36130b014b62cd6200c8211 (patch) | |
tree | 556625dc98766a444ea2b916e76446c2cb379357 /src/tabbar.cpp | |
parent | Merge commit 'refs/merge-requests/192' of git://gitorious.org/rekonq/mainline (diff) | |
download | rekonq-f0c11eadaa4b77a4e36130b014b62cd6200c8211.tar.xz |
Switching to "KDE" icon cache. While this "brute force" change can be dangerous,
it seems let everything work as expected (at least here).
It also lets us to retrieve icons when sites are not visited (eg: search engines or old bookmarks)
It also contains fixes & improvements for icons management in History & Bookmarks classes.
More code to maintain, but more things working.Let's see what'll happen...
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r-- | src/tabbar.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp index 98243e71..f4da2e54 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -39,6 +39,7 @@ #include "webtab.h" #include "websnap.h" #include "mainview.h" +#include "iconmanager.h" // KDE Includes #include <KShortcut> @@ -379,7 +380,7 @@ void TabBar::setupHistoryActions() foreach (const HistoryItem &item, mv->recentlyClosedTabs()) { - KAction *a = new KAction(Application::icon(item.url), item.title, this); + KAction *a = new KAction(Application::iconManager()->iconForUrl(item.url), item.title, this); a->setData(item.url); connect(a, SIGNAL(triggered()), mv, SLOT(openClosedTab())); am->addAction(a); |