From e3e559d8575bfcf787158fab30f37ed37d75a70d Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 22 Jul 2007 03:21:41 +0000 Subject: [PATCH] - Fixed typo in last commit --- src/rss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rss.h b/src/rss.h index 903b2a9fb..430dbcbcf 100644 --- a/src/rss.h +++ b/src/rss.h @@ -270,7 +270,7 @@ class RssStream : public QObject{ void getIcon() { QUrl siteUrl(url); QString iconUrl = "http://"+siteUrl.host()+"/favicon.ico"; - connect(downloaderIcon, SIGNAL(downloadFinished(const QString&, const QString&), this, SLOT(displayIcon(const QString&, const QString&))); + connect(downloaderIcon, SIGNAL(downloadFinished(const QString&, const QString&)), this, SLOT(displayIcon(const QString&, const QString&))); downloaderIcon->downloadUrl(iconUrl); }