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/webpage.cpp | |
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/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index 4c720767..07f961c5 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -208,7 +208,6 @@ WebPage::WebPage(QWidget *parent) // ----- last stuffs connect(manager, SIGNAL(finished(QNetworkReply*)), this, SLOT(manageNetworkErrors(QNetworkReply*))); connect(this, SIGNAL(loadFinished(bool)), this, SLOT(loadFinished(bool))); - connect(this, SIGNAL(loadStarted()), this, SLOT(loadStarted())); // protocol handler signals connect(&_protHandler, SIGNAL(downloadUrl(const KUrl &)), this, SLOT(downloadUrl(const KUrl &))); @@ -472,15 +471,10 @@ void WebPage::handleUnsupportedContent(QNetworkReply *reply) } -void WebPage::loadStarted() -{ - Application::iconManager()->provideIcon(this, _loadingUrl); -} - - void WebPage::loadFinished(bool ok) { Q_UNUSED(ok); + Application::iconManager()->provideIcon(this, _loadingUrl); Application::adblockManager()->applyHidingRules(this); |