diff --git a/src/services/tt-rss/ttrssserviceroot.cpp b/src/services/tt-rss/ttrssserviceroot.cpp index 9dd105766..695f1e307 100755 --- a/src/services/tt-rss/ttrssserviceroot.cpp +++ b/src/services/tt-rss/ttrssserviceroot.cpp @@ -644,8 +644,8 @@ QStringList TtRssServiceRoot::textualFeedIds(const QList &feeds) { QStringList stringy_ids; stringy_ids.reserve(feeds.size()); - foreach (Feed *feed, feeds) { - stringy_ids.append(QString("'%1'").arg(QString::number(qobject_cast(feed)->customId()))); + foreach (const Feed *feed, feeds) { + stringy_ids.append(QString("'%1'").arg(QString::number(qobject_cast(feed)->customId()))); } return stringy_ids;