diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-11 12:09:47 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-11 12:09:47 +0200 |
commit | 2d52276803a4145546f74d5d179091667e9186ab (patch) | |
tree | c5ac11555bd5368670d7f8b812476bf4b8ef07e8 /src/iconmanager.h | |
parent | honor the "open tabs in the background" for the search with feature (diff) | |
download | rekonq-2d52276803a4145546f74d5d179091667e9186ab.tar.xz |
This commit aims to fix all troubles with favicons retrieving.
There is at least just another one about threading. But I'm not 100% sure about.
And anyway, it will be eventually addressed after 0.6 release..
Diffstat (limited to 'src/iconmanager.h')
-rw-r--r-- | src/iconmanager.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/iconmanager.h b/src/iconmanager.h index 9e451431..724d631a 100644 --- a/src/iconmanager.h +++ b/src/iconmanager.h @@ -54,9 +54,18 @@ public: void downloadIconFromUrl(const KUrl &url); void clearIconCache(); - + +private Q_SLOTS: + void doLastStuffs(KJob *); + void notifyLastStuffs(KJob *); + Q_SIGNALS: void iconChanged(); + +private: + bool existsIconForUrl(const KUrl &url); + + QString _faviconsDir; }; |