From kde-commits Mon Oct 13 20:05:33 2008 From: Laurent Montel Date: Mon, 13 Oct 2008 20:05:33 +0000 To: kde-commits Subject: kdereview/plasma/applets/rssnow Message-Id: <1223928333.314197.22900.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=122392834408200 SVN commit 871048 by mlaurent: const'ify M +1 -1 news.cpp --- trunk/kdereview/plasma/applets/rssnow/news.cpp #871047:871048 @@ -302,7 +302,7 @@ // it causes bugs, too! see the spiegel.de rss which url contains "," // i have fixed the rss dataengine as well so now " " is standard QString feeds; - foreach (KUrl feed, urls){ + foreach (const KUrl& feed, urls){ feeds.append(QString(feed.prettyUrl())); feeds.append(" "); }