summaryrefslogtreecommitdiffstats
path: root/tdecmshell
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-04-04 00:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-04-04 00:43:23 +0900
commit9cd27dbaa3e866ab5befdbcaadddf13b34e7b0bf (patch)
treef382b13f2852fe82e04528da551791de19083c02 /tdecmshell
parent55b56c2e5010ffde0673d4a988c451be390fd817 (diff)
downloadtdelibs-9cd27dbaa3e866ab5befdbcaadddf13b34e7b0bf.tar.gz
tdelibs-9cd27dbaa3e866ab5befdbcaadddf13b34e7b0bf.zip
Fixed tde branding of services in tdebuildsycoca. This was creating old
kde-* entries in profilerc when updating file type preferences. This relates to bug 3083. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecmshell')
-rw-r--r--tdecmshell/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecmshell/main.cpp b/tdecmshell/main.cpp
index 20ef629d9..a99c4b545 100644
--- a/tdecmshell/main.cpp
+++ b/tdecmshell/main.cpp
@@ -103,8 +103,8 @@ static KService::Ptr locateModule(const TQCString& module)
}
// avoid finding random non-TDE applications
- if ( module.left( 4 ) != "kde-" && service->library().isEmpty() )
- return locateModule( "kde-" + module );
+ if ( module.left( 4 ) != "tde-" && service->library().isEmpty() )
+ return locateModule( "tde-" + module );
if(!TDECModuleLoader::testModule( module ))
{