┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuc Menut <[email protected]>2012-11-27 17:32:00 +0100
committerFrank Reininghaus <[email protected]>2012-11-27 17:32:00 +0100
commita39ba0acd81c55b217ef71b24617f42531a08285 (patch)
tree2e72cb5db27246c0c9d1d24ebe013168b89a29ce /src
parentffe179ad51d1f88f98e03fc130ec85b306a018d8 (diff)
Use correct value for autostart setting of Service-nepomukfileindexer
Fixes the problem that the "Recently accessed" entries in the Places Panel might not be shown when using the default setup. BUG: 310770 FIXED-IN: 4.10 Beta 2 REVIEW: 107464
Diffstat (limited to 'src')
-rw-r--r--src/panels/places/placesitemmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/places/placesitemmodel.cpp b/src/panels/places/placesitemmodel.cpp
index a37c17fd8..1acbb5771 100644
--- a/src/panels/places/placesitemmodel.cpp
+++ b/src/panels/places/placesitemmodel.cpp
@@ -90,7 +90,7 @@ PlacesItemModel::PlacesItemModel(QObject* parent) :
#ifdef HAVE_NEPOMUK
if (Nepomuk2::ResourceManager::instance()->initialized()) {
KConfig config("nepomukserverrc");
- m_fileIndexingEnabled = config.group("Service-nepomukfileindexer").readEntry("autostart", false);
+ m_fileIndexingEnabled = config.group("Service-nepomukfileindexer").readEntry("autostart", true);
}
#endif