summaryrefslogtreecommitdiffstats
path: root/wineconfig/firstrunwizard.py
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:26:54 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:26:54 -0600
commit4066d7fb18b31353b86afa9fc1d94d492008e733 (patch)
tree4b4b8888abd5cd6523601b770b188927d259d8e6 /wineconfig/firstrunwizard.py
parent3a80ef8a0d25cc90b92b41dccd698b5d7ec9dc13 (diff)
downloadtde-guidance-4066d7fb18b31353b86afa9fc1d94d492008e733.tar.gz
tde-guidance-4066d7fb18b31353b86afa9fc1d94d492008e733.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'wineconfig/firstrunwizard.py')
-rwxr-xr-xwineconfig/firstrunwizard.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wineconfig/firstrunwizard.py b/wineconfig/firstrunwizard.py
index f2d456c..2bd9943 100755
--- a/wineconfig/firstrunwizard.py
+++ b/wineconfig/firstrunwizard.py
@@ -37,7 +37,7 @@ class FirstRunWizard(KWizard):
if not name:
self.setName("firstrunwizard")
- self.imagedir = unicode(KGlobal.dirs().findDirs("data","guidance/pics")[0])
+ self.imagedir = unicode(TDEGlobal.dirs().findDirs("data","guidance/pics")[0])
self.setupPage1()
self.setupPageVersion()
@@ -83,7 +83,7 @@ class FirstRunWizard(KWizard):
self.winefolderedit = KLineEdit(self.winepath,hbox)
self.urlcompletion = KURLCompletion(KURLCompletion.DirCompletion)
self.winefolderedit.setCompletionObject(self.urlcompletion)
- self.winefolderedit.setCompletionMode(KGlobalSettings.CompletionPopup)
+ self.winefolderedit.setCompletionMode(TDEGlobalSettings.CompletionPopup)
self.connect(self.winefolderedit,SIGNAL("textChanged(const QString &)"),self.slotWineFolderEdited)
self.browsecreatebutton = KPushButton(i18n("Browse"),hbox)
@@ -101,7 +101,7 @@ class FirstRunWizard(KWizard):
self.existingwinefolderedit = KLineEdit("",hbox)
self.urlcompletion = KURLCompletion(KURLCompletion.DirCompletion)
self.existingwinefolderedit.setCompletionObject(self.urlcompletion)
- self.existingwinefolderedit.setCompletionMode(KGlobalSettings.CompletionPopup)
+ self.existingwinefolderedit.setCompletionMode(TDEGlobalSettings.CompletionPopup)
self.connect(self.existingwinefolderedit,SIGNAL("textChanged(const QString &)"),self.slotWineFolderEdited)
self.browseexistingbutton = KPushButton(i18n("Browse"),hbox)