From 0552cd648217a860b1c2fd6536111fbdb2a4e891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Andr=C3=A9s=20Rodr=C3=ADguez?= Date: Thu, 4 Mar 2010 21:19:46 +0000 Subject: [PATCH] Dear stupid me: don't commit stupid changes without testing them.... Thanks - Fix KFind not being able to search in file contents.. svn path=/trunk/KDE/kdebase/apps/; revision=1098983 --- kfind/kquery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kfind/kquery.cpp b/kfind/kquery.cpp index 652fa7905d..a2f68199dd 100644 --- a/kfind/kquery.cpp +++ b/kfind/kquery.cpp @@ -418,7 +418,7 @@ void KQuery::processQuery( const KFileItem &file) QString str = stream->readLine(); matchingLineNumber++; - if (str.isEmpty()) break; + if (str.isNull()) break; if(isZippedOfficeDocument) str.remove(xmlTags);