diff options
author | Jonathan Thomas <echidnaman@kubuntu.org> | 2010-05-27 10:57:10 -0400 |
---|---|---|
committer | Jonathan Thomas <echidnaman@kubuntu.org> | 2010-05-27 10:57:10 -0400 |
commit | 498eac8ccbc952228ab14178fc36635360ddde91 (patch) | |
tree | 1967d5e24e6e400077c333875c168a643460f02f /src/webtab.cpp | |
parent | The second arg of QString::replace has to be a QString, I suppose (diff) | |
download | rekonq-498eac8ccbc952228ab14178fc36635360ddde91.tar.xz |
Const iterator fixes
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r-- | src/webtab.cpp | 2 |
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"))) |