diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-11 12:11:42 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-11 12:11:42 +0200 |
commit | e8f6b6380347f29e0981c1c92834fbf9b1a98696 (patch) | |
tree | e0e4760237cfc40fcf9c639cf98d47493a0d2183 /src/iconmanager.h | |
parent | Fix includes, as pointed out by Krazy (diff) | |
parent | This commit aims to fix all troubles with favicons retrieving. (diff) | |
download | rekonq-e8f6b6380347f29e0981c1c92834fbf9b1a98696.tar.xz |
Merge branch 'iconFixes2'
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; }; |