From: Luc Menut Date: Tue, 27 Nov 2012 16:32:00 +0000 (+0100) Subject: Use correct value for autostart setting of Service-nepomukfileindexer X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/a39ba0acd81c55b217ef71b24617f42531a08285?ds=sidebyside 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 --- 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