┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2011-02-05 21:12:19 +0100
committerPeter Penz <[email protected]>2011-02-05 21:12:19 +0100
commit0a9cdfa4ed20d5efca8bb6d5a156ccf506c58bcc (patch)
tree4d0b77ab7b3c1d441e2d58e8cd59d8c5c4933cb2
parentc1e805adf6713cfe3d6fe2852efd45c7756fce35 (diff)
Fix compilation when Nepomuk is not available
CCBUG: 265547
-rw-r--r--src/search/dolphinsearchinformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/dolphinsearchinformation.cpp b/src/search/dolphinsearchinformation.cpp
index 28863034b..8ff2f9554 100644
--- a/src/search/dolphinsearchinformation.cpp
+++ b/src/search/dolphinsearchinformation.cpp
@@ -81,7 +81,7 @@ bool DolphinSearchInformation::isPathIndexed(const KUrl& url) const
return isIndexed;
#else
- Q_UNUSED(path);
+ Q_UNUSED(url);
return false;
#endif
}