diff options
Diffstat (limited to 'src/icons/iconmanager.cpp')
-rw-r--r-- | src/icons/iconmanager.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/icons/iconmanager.cpp b/src/icons/iconmanager.cpp index cc09e252..7bc47eec 100644 --- a/src/icons/iconmanager.cpp +++ b/src/icons/iconmanager.cpp @@ -207,18 +207,15 @@ QString IconManager::iconPathForUrl(const KUrl &url) } -void IconManager::provideEngineFavicon(const KUrl &url) -{ - // will autodelete itself when done - new WebIcon(url); -} - - KIcon IconManager::engineFavicon(const KUrl &url) { if (QFile::exists(_faviconsDir + url.host() + QL1S(".png"))) return KIcon(QIcon(_faviconsDir + url.host() + QL1S(".png"))); + // if engine favicon is NOT found, download it + // will autodelete itself when done + new WebIcon(url); + kDebug() << "NO ENGINE FAVICON"; return KIcon("text-html"); } |