diff options
author | Tirtha Chatterjee <tirtha.p.chatterjee@gmail.com> | 2012-07-05 02:27:36 +0530 |
---|---|---|
committer | Tirtha Chatterjee <tirtha.p.chatterjee@gmail.com> | 2012-07-05 02:27:36 +0530 |
commit | 83229d3e2a8b67f6cf2a9ed996ef52609eed0706 (patch) | |
tree | ae09593aaa5ed358591b0cf49e046732bad6a499 /src | |
parent | break an eventual "recall" loop (diff) | |
download | rekonq-83229d3e2a8b67f6cf2a9ed996ef52609eed0706.tar.xz |
Fixed a line that was calling QString::startsWith() without args. Fixed build.
Diffstat (limited to 'src')
-rw-r--r-- | src/webpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index c028ee58..b6e5a62d 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -372,7 +372,7 @@ void WebPage::handleUnsupportedContent(QNetworkReply *reply) // This is needed in case rekonq has been associated with something it cannot // properly handle (eg: xbel files, see BUG:299056). This way we break an eventual // "recall" loop. - if (appService->exec().trimmed().startsWith() == QL1S("rekonq")) + if (appService->exec().trimmed().startsWith(QL1S("rekonq"))) { isLocal ? KMessageBox::sorry(view(), i18n("rekonq cannot properly handle this, sorry")) |