From: Denis Steckelmacher Date: Wed, 10 Sep 2014 11:04:45 +0000 (+0200) Subject: Fix an #ifdef that referred to Nepomuk instead of Baloo X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/087f4cb8081ac16ae4de102d49963c72e9bb64d2 Fix an #ifdef that referred to Nepomuk instead of Baloo The query builder widget is now properly disabled when the user wants to look for files by filename and not by content. --- diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 27a251b7d..0ab4d86cd 100644 --- a/src/search/dolphinsearchbox.cpp +++ b/src/search/dolphinsearchbox.cpp @@ -273,7 +273,7 @@ void DolphinSearchBox::slotReturnPressed() void DolphinSearchBox::updateSearchInputParsing() { -#ifdef HAVE_NEPOMUK +#ifdef HAVE_BALOO m_searchInput->setParsingEnabled(m_contentButton->isChecked()); #endif }