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/webpage.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/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index 00745445..45059def 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -615,14 +615,14 @@ void WebPage::downloadAllContentsWithKGet(QPoint) KUrl relativeUrl; QWebElementCollection images = mainFrame()->documentElement().findAll("img"); - foreach(QWebElement img, images) + foreach(const QWebElement &img, images) { relativeUrl.setEncodedUrl(img.attribute("src").toUtf8(), KUrl::TolerantMode); contents << baseUrl.resolved(relativeUrl).toString(); } QWebElementCollection links = mainFrame()->documentElement().findAll("a"); - foreach(QWebElement link, links) + foreach(const QWebElement &link, links) { relativeUrl.setEncodedUrl(link.attribute("href").toUtf8(), KUrl::TolerantMode); contents << baseUrl.resolved(relativeUrl).toString(); |