From 83229d3e2a8b67f6cf2a9ed996ef52609eed0706 Mon Sep 17 00:00:00 2001 From: Tirtha Chatterjee Date: Thu, 5 Jul 2012 02:27:36 +0530 Subject: Fixed a line that was calling QString::startsWith() without args. Fixed build. --- src/webpage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/webpage.cpp') 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")) -- cgit v1.2.1