diff options
| author | Frank Reininghaus <[email protected]> | 2012-12-07 22:38:57 +0100 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2012-12-07 22:38:57 +0100 |
| commit | 99f2840038976111475cb90e3865edb11d04db61 (patch) | |
| tree | c66f4554d4d4290461e8886ee3097f991a621244 /src/search | |
| parent | b2a580c2b9b85a5a5b91e2eb3f218cea3b7b98c3 (diff) | |
Correct value for autostart setting of Service-nepomukfileindexer, part2
After 530c743a89bb5366ff9b6f8be1d7a37f23b46880, this fixes the other
places where the incorrect default value 'false' was used.
Thanks to Luc Menut for noticing this problem!
CCBUG: [email protected]
Diffstat (limited to 'src/search')
| -rw-r--r-- | src/search/dolphinsearchinformation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/dolphinsearchinformation.cpp b/src/search/dolphinsearchinformation.cpp index 7fa5f7ba8..31f6fcc7b 100644 --- a/src/search/dolphinsearchinformation.cpp +++ b/src/search/dolphinsearchinformation.cpp @@ -92,7 +92,7 @@ DolphinSearchInformation::DolphinSearchInformation() : #ifdef HAVE_NEPOMUK if (Nepomuk2::ResourceManager::instance()->initialized()) { KConfig config("nepomukserverrc"); - m_indexingEnabled = config.group("Service-nepomukfileindexer").readEntry("autostart", false); + m_indexingEnabled = config.group("Service-nepomukfileindexer").readEntry("autostart", true); } #endif } |
