summaryrefslogtreecommitdiff
path: root/src/webpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-09-11 12:11:42 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-09-11 12:11:42 +0200
commite8f6b6380347f29e0981c1c92834fbf9b1a98696 (patch)
treee0e4760237cfc40fcf9c639cf98d47493a0d2183 /src/webpage.cpp
parentFix includes, as pointed out by Krazy (diff)
parentThis commit aims to fix all troubles with favicons retrieving. (diff)
downloadrekonq-e8f6b6380347f29e0981c1c92834fbf9b1a98696.tar.xz
Merge branch 'iconFixes2'
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r--src/webpage.cpp8
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);