summaryrefslogtreecommitdiffstats
path: root/serviceconfig/serviceconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'serviceconfig/serviceconfig.py')
-rwxr-xr-xserviceconfig/serviceconfig.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/serviceconfig/serviceconfig.py b/serviceconfig/serviceconfig.py
index 87449fb..b93be65 100755
--- a/serviceconfig/serviceconfig.py
+++ b/serviceconfig/serviceconfig.py
@@ -930,7 +930,7 @@ class GentooRunLevel(SysVRunLevel):
if standalone:
programbase = KDialogBase
else:
- programbase = KCModule
+ programbase = TDECModule
# is_shown exists to prevent loadDescriptions from running two times, which is
# the case when we're running inside kcontrol. Yes, this is an ugly hack. :(
@@ -950,12 +950,12 @@ class SysVInitApp(programbase):
KDialogBase.User1|KDialogBase.Close, KDialogBase.Close)
self.setButtonText(KDialogBase.User1,i18n("About"))
else:
- KCModule.__init__(self,parent,name)
+ TDECModule.__init__(self,parent,name)
self.setButtons(1)
self.aboutdata = MakeAboutData()
# Create a configuration object.
- self.config = KConfig("serviceconfigrc")
+ self.config = TDEConfig("serviceconfigrc")
TDEGlobal.iconLoader().addAppDir("guidance")
self.updatingGUI = False
@@ -1367,7 +1367,7 @@ class SysVInitApp(programbase):
def buttons(self):
# Only supply a Help button. Other choices are Default and Apply.
- return KCModule.Help
+ return TDECModule.Help
############################################################################
class CommandRunner(KDialogBase):