diff options
-rw-r--r-- | src/icons/webicon.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/icons/webicon.cpp b/src/icons/webicon.cpp index 1d61027b..b27b2e36 100644 --- a/src/icons/webicon.cpp +++ b/src/icons/webicon.cpp @@ -116,9 +116,10 @@ void WebIcon::saveIcon(bool b) // dest url KUrl destUrl(faviconsDir + m_url.host()); - + kDebug() << "DEST URL: " << destUrl; + // will autodelete itself when done - new IconDownloader(faviconUrl, destUrl, this); + new IconDownloader(faviconUrl, destUrl); this->deleteLater(); } |