summaryrefslogtreecommitdiff
path: root/src/iconmanager.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-09-11 12:09:47 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-09-11 12:09:47 +0200
commit2d52276803a4145546f74d5d179091667e9186ab (patch)
treec5ac11555bd5368670d7f8b812476bf4b8ef07e8 /src/iconmanager.h
parenthonor the "open tabs in the background" for the search with feature (diff)
downloadrekonq-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.h11
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;
};