summaryrefslogtreecommitdiffstats
path: root/wineconfig
diff options
context:
space:
mode:
Diffstat (limited to 'wineconfig')
-rwxr-xr-xwineconfig/firstrunwizard.py4
-rwxr-xr-xwineconfig/wineconfig.py10
2 files changed, 7 insertions, 7 deletions
diff --git a/wineconfig/firstrunwizard.py b/wineconfig/firstrunwizard.py
index c6d3d67..f2d456c 100755
--- a/wineconfig/firstrunwizard.py
+++ b/wineconfig/firstrunwizard.py
@@ -17,8 +17,8 @@
###########################################################################
from qt import *
-from kdecore import *
-from kdeui import *
+from tdecore import *
+from tdeui import *
from kfile import *
from kio import *
import os
diff --git a/wineconfig/wineconfig.py b/wineconfig/wineconfig.py
index d4c39ac..f662915 100755
--- a/wineconfig/wineconfig.py
+++ b/wineconfig/wineconfig.py
@@ -17,8 +17,8 @@
###########################################################################
from qt import *
-from kdecore import *
-from kdeui import *
+from tdecore import *
+from tdeui import *
from kfile import *
from kio import *
#import string
@@ -284,14 +284,14 @@ class WineConfigApp(programbase):
def InstallWine(self):
""" Allows the user to enable the proper repositories and
install wine.
- Currently Kubuntu specific, requires kdesudo, adept_batch
+ Currently Kubuntu specific, requires tdesudo, adept_batch
and software-properties-kde """
if not isroot:
- if os.system("kdesudo \"software-properties-kde --enable-component universe\""):
+ if os.system("tdesudo \"software-properties-kde --enable-component universe\""):
KMessageBox.error(self, i18n("There was a problem running " + \
"software-properties-kde. Make sure " + \
"software-properties-kde is installed."))
- elif os.system("kdesudo \"adept_batch install wine\""):
+ elif os.system("tdesudo \"adept_batch install wine\""):
KMessageBox.error(self, i18n("There was a problem running " + \
"adept_batch. Make sure " + \
"Adept is installed."))