summaryrefslogtreecommitdiff
path: root/src/webtab.cpp
diff options
context:
space:
mode:
authorJonathan Thomas <echidnaman@kubuntu.org>2010-05-27 10:57:10 -0400
committerJonathan Thomas <echidnaman@kubuntu.org>2010-05-27 10:57:10 -0400
commit498eac8ccbc952228ab14178fc36635360ddde91 (patch)
tree1967d5e24e6e400077c333875c168a643460f02f /src/webtab.cpp
parentThe second arg of QString::replace has to be a QString, I suppose (diff)
downloadrekonq-498eac8ccbc952228ab14178fc36635360ddde91.tar.xz
Const iterator fixes
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r--src/webtab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp
index a6bedc97..47780a44 100644
--- a/src/webtab.cpp
+++ b/src/webtab.cpp
@@ -183,7 +183,7 @@ void WebTab::showRSSInfo(QPoint pos)
QMap<KUrl, QString> map;
- foreach(QWebElement el, col)
+ foreach(const QWebElement &el, col)
{
QString urlString;
if (el.attribute("href").startsWith(QL1S("http")))