From kde-core-devel Thu Feb 28 13:48:43 2008 From: Will Stephenson Date: Thu, 28 Feb 2008 13:48:43 +0000 To: kde-core-devel Subject: Re: Add a KCModule (KCron) into System Settings Message-Id: <200802281448.44312.wstephenson () kde ! org> X-MARC-Message: https://marc.info/?l=kde-core-devel&m=120420626220612 On Thursday 28 February 2008, Nicolas Ternisien said: > Hi, > > I'm actually trying to convert KCron application into a KCModule to > integrate it into System Settings. > > http://websvn.kde.org/trunk/KDE/kdeadmin/kcron/ > > The code is compiling, and the service is called kcm_cron. I'm > unfortunately unable to add it to System Settings. I thought it was > due to some needed parameters in kcm_cron.desktop > (X-KDE-System-Settings-Parent-Category=notifications), but it does not > change anything. Please note that notifications category is for test > only. Do "kcmshell4 --list" - if your module is listed it is found by the kcm framework. If not, compare its .desktop file with eg. /usr/share/kde4/services/kcmnotify.desktop and see if you missed something like ParentApp or the ServiceTypes line. If it is, maybe you have something wrong preventing the library loading. Is your problematic code committed to svn? Will