┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/search/dolphinsearchbox.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2011-02-06 13:44:30 +0100
committerPeter Penz <[email protected]>2011-02-06 13:44:30 +0100
commit0b925e0231755f585afce75d42920b6c76df5381 (patch)
tree6b8acd0dbbb3106bd39e06acf9bb601bfac58412 /src/search/dolphinsearchbox.cpp
parent27456a2f73b3d01cc94233fda958d0b22cb1ac5b (diff)
Fix issue that filenamesearch: is used instead of nepmuksearch:
Diffstat (limited to 'src/search/dolphinsearchbox.cpp')
-rw-r--r--src/search/dolphinsearchbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp
index dfffff4bb..e3024b6e0 100644
--- a/src/search/dolphinsearchbox.cpp
+++ b/src/search/dolphinsearchbox.cpp
@@ -119,7 +119,7 @@ KUrl DolphinSearchBox::urlForSearching() const
{
KUrl url;
const DolphinSearchInformation& searchInfo = DolphinSearchInformation::instance();
- if (searchInfo.isIndexingEnabled() && searchInfo.isPathIndexed(url)) {
+ if (searchInfo.isIndexingEnabled() && searchInfo.isPathIndexed(m_searchPath)) {
url = nepomukUrlForSearching();
} else {
url.setProtocol("filenamesearch");