diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:23:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:23:28 -0600 |
commit | 36302a49b8014e97616cb9d4c9f9d8587235f11d (patch) | |
tree | 3405d501624df0b659a21a4807987a8ca66d1a99 /wineconfig/wineconfig.py | |
parent | 3c9bf533ff617029f3102d9d8ac4801789ddf0b9 (diff) | |
download | tde-guidance-36302a49b8014e97616cb9d4c9f9d8587235f11d.tar.gz tde-guidance-36302a49b8014e97616cb9d4c9f9d8587235f11d.zip |
Additional kde to tde renaming
Diffstat (limited to 'wineconfig/wineconfig.py')
-rwxr-xr-x | wineconfig/wineconfig.py | 10 |
1 files changed, 5 insertions, 5 deletions
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.")) |