diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:26:54 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:26:54 -0600 |
commit | 4066d7fb18b31353b86afa9fc1d94d492008e733 (patch) | |
tree | 4b4b8888abd5cd6523601b770b188927d259d8e6 /mountconfig/mountconfig.py | |
parent | 3a80ef8a0d25cc90b92b41dccd698b5d7ec9dc13 (diff) | |
download | tde-guidance-4066d7fb18b31353b86afa9fc1d94d492008e733.tar.gz tde-guidance-4066d7fb18b31353b86afa9fc1d94d492008e733.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'mountconfig/mountconfig.py')
-rwxr-xr-x | mountconfig/mountconfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mountconfig/mountconfig.py b/mountconfig/mountconfig.py index 6ddec47..9ffdca1 100755 --- a/mountconfig/mountconfig.py +++ b/mountconfig/mountconfig.py @@ -2379,7 +2379,7 @@ class ROListBoxItem(QListBoxPixmap): boldfont = QFont(p.font()) boldfont.setWeight(QFont.Bold) p.setFont(boldfont) - p.setBackgroundColor(KGlobalSettings.alternateBackgroundColor()) + p.setBackgroundColor(TDEGlobalSettings.alternateBackgroundColor()) p.eraseRect(0,0,self.listBox().width(),self.height(self.listBox())) QListBoxPixmap.paint(self,p) @@ -2857,7 +2857,7 @@ class MountConfigApp(programbase): ######################################################################## def __init__(self,parent=None,name=None): global standalone,isroot - KGlobal.locale().insertCatalogue("guidance") + TDEGlobal.locale().insertCatalogue("guidance") if standalone: KDialogBase.__init__(self,KJanusWidget.Plain,i18n("Disk & Filesystems"), @@ -2873,7 +2873,7 @@ class MountConfigApp(programbase): # Create a configuration object. self.config = KConfig("mountconfigrc") - KGlobal.iconLoader().addAppDir("guidance") + TDEGlobal.iconLoader().addAppDir("guidance") self.updatingGUI = False self.mounttable = MountTable('/etc/fstab','/etc/mtab') self.selectedentry = None |