diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:14:08 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:14:08 -0600 |
commit | 2d5b7ef7c2e7c5dc982b66ab3f4210a5cf605c73 (patch) | |
tree | 31e5f932bfb070e9d7b5b1f6a5b3d42a01e7a587 /userconfig | |
parent | 4066d7fb18b31353b86afa9fc1d94d492008e733 (diff) | |
download | tde-guidance-2d5b7ef7c2e7c5dc982b66ab3f4210a5cf605c73.tar.gz tde-guidance-2d5b7ef7c2e7c5dc982b66ab3f4210a5cf605c73.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'userconfig')
-rwxr-xr-x | userconfig/userconfig.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/userconfig/userconfig.py b/userconfig/userconfig.py index d2f04e2..77b30f8 100755 --- a/userconfig/userconfig.py +++ b/userconfig/userconfig.py @@ -52,7 +52,7 @@ def QDateToSptime(qdate): if standalone: programbase = KDialogBase else: - programbase = KCModule + programbase = TDECModule class UserConfigApp(programbase): def __init__(self,parent=None,name=None): @@ -64,7 +64,7 @@ class UserConfigApp(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(0) self.aboutdata = MakeAboutData() @@ -74,7 +74,7 @@ class UserConfigApp(programbase): toplayout.setStretchFactor(tabcontrol,1) # Create a configuration object. - self.config = KConfig("userconfigrc") + self.config = TDEConfig("userconfigrc") TDEGlobal.iconLoader().addAppDir("guidance") @@ -572,7 +572,7 @@ class UserConfigApp(programbase): return self.aboutdata def buttons(self): # Only supply a Help button. Other choices are Default and Apply. - return KCModule.Help + return TDECModule.Help ########################################################################### |