From 369eb4117d1260f5c99e0c43f9b5888c4dbfe733 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sat, 6 Nov 2010 14:33:23 +0000 Subject: Disable the filter-dock if Nepomuk is not active. svn path=/trunk/KDE/kdebase/apps/; revision=1193611 --- src/search/dolphinsearchbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/search/dolphinsearchbox.cpp') diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 2e4b58d9f..6fb22fb17 100644 --- a/src/search/dolphinsearchbox.cpp +++ b/src/search/dolphinsearchbox.cpp @@ -80,7 +80,7 @@ QString DolphinSearchBox::text() const void DolphinSearchBox::setSearchPath(const KUrl& url) { m_searchPath = url; - m_filterButton->setVisible(isSearchPathIndexed()); + m_filterButton->setVisible(m_nepomukActivated && isSearchPathIndexed()); } KUrl DolphinSearchBox::searchPath() const @@ -91,7 +91,7 @@ KUrl DolphinSearchBox::searchPath() const KUrl DolphinSearchBox::urlForSearching() const { KUrl url; - if (isSearchPathIndexed()) { + if (m_nepomukActivated && isSearchPathIndexed()) { url = nepomukUrlForSearching(); } else { url = m_searchPath; -- cgit v1.3