From: Peter Penz Date: Tue, 23 Feb 2010 15:46:43 +0000 (+0000) Subject: ups: I forgot to set the and-term for the file query in the last commit X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/e6ba74c5ae544dbc55c5e258adc7f23924993e5b ups: I forgot to set the and-term for the file query in the last commit CCMAIL: post@oliver-heidbuechel.de svn path=/trunk/KDE/kdebase/apps/; revision=1095055 --- diff --git a/src/search/dolphinsearchoptionsconfigurator.cpp b/src/search/dolphinsearchoptionsconfigurator.cpp index 379ea8e86..1bb3e30cf 100644 --- a/src/search/dolphinsearchoptionsconfigurator.cpp +++ b/src/search/dolphinsearchoptionsconfigurator.cpp @@ -359,6 +359,7 @@ Nepomuk::Query::Query DolphinSearchOptionsConfigurator::nepomukQuery() const // "From Here" is selected as location filter Nepomuk::Query::FileQuery fileQuery; fileQuery.addIncludeFolder(m_directory); + fileQuery.setTerm(andTerm); return fileQuery; }