Additional kde to tde renaming

pull/2/head
Timothy Pearson 13 years ago
parent 3c9bf533ff
commit 36302a49b8

@ -17,8 +17,8 @@
###########################################################################
from qt import *
from kdecore import *
from kdeui import *
from tdecore import *
from tdeui import *
import xorgconfig
import xf86misc
import string

@ -1,7 +1,7 @@
from qt import *
from kdecore import *
from kdeui import *
from tdecore import *
from tdeui import *
import os
from displayconfigabstraction import *

@ -17,8 +17,8 @@
# Based on Hamish Rodda's ktimerdialog.cpp.
from qt import *
from kdecore import *
from kdeui import *
from tdecore import *
from tdeui import *
class KTimerDialog(KDialogBase):
CountDown = 0

@ -488,7 +488,7 @@ application -->
<!--
List any special requirements for your application here. This should include:
.Libraries or other software that is not included in kdesupport,
.Libraries or other software that is not included in tdesupport,
kdelibs, or kdebase.
.Hardware requirements like amount of RAM, disk space, graphics card
capabilities, screen resolution, special expansion cards, etc.

@ -19,8 +19,8 @@
from qt import *
from kdeui import *
from kdecore import *
from tdeui import *
from tdecore import *
from kfile import *
import sys, os, string, re
import os.path

@ -15,8 +15,8 @@
###########################################################################
from qt import *
from kdeui import *
from kdecore import *
from tdeui import *
from tdecore import *
from kio import *
############################################################################

@ -14,7 +14,7 @@
# #
###########################################################################
from qt import *
from kdecore import *
from tdecore import *
import locale
debug = False

@ -23,7 +23,7 @@ TODO:
import sys
import os
from qt import *
from kdeui import *
from tdeui import *
#import kdedesigner
from fuser_ui import *
from SimpleCommandRunner import *

@ -1,7 +1,7 @@
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>FUserUI</class>
<comment>Python:from kdeui import *
Python:from kdecore import *</comment>
<comment>Python:from tdeui import *
Python:from tdecore import *</comment>
<author>Sebastian Kuegler</author>
<widget class="QDialog">
<property name="name">

@ -17,8 +17,8 @@
###########################################################################
from qt import *
from kdeui import *
from kdecore import *
from tdeui import *
from tdecore import *
from kfile import *
from kio import *
import sys

@ -1,7 +1,7 @@
#!/usr/bin/env python
from qt import *
from kdecore import *
from tdecore import *
import sys, os
def getLabel(blocks):

@ -38,8 +38,8 @@ import subprocess
import dbus
from qt import *
from kdecore import *
from kdeui import *
from tdecore import *
from tdeui import *
from dcopext import DCOPClient, DCOPApp # used to lock the screen
from dcopexport import DCOPExObj

@ -10,9 +10,9 @@
import sys
from qt import *
from kdecore import KCmdLineArgs, KApplication
from kdecore import i18n
from kdeui import *
from tdecore import KCmdLineArgs, KApplication
from tdecore import i18n
from tdeui import *

@ -10,9 +10,9 @@
import sys
from qt import *
from kdecore import KCmdLineArgs, KApplication
from kdecore import i18n
from kdeui import *
from tdecore import KCmdLineArgs, KApplication
from tdecore import i18n
from tdeui import *
class NotifyWidget(QWidget):

@ -10,11 +10,11 @@
import sys
from qt import *
from kdecore import KCmdLineArgs, KApplication
from kdecore import i18n
from kdeui import *
from tdecore import KCmdLineArgs, KApplication
from tdecore import i18n
from tdeui import *
from kdeui import *
from tdeui import *
class ToolTip(QWidget):
def __init__(self,parent = None,name = None,fl = 0):

@ -1,6 +1,6 @@
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>ToolTip</class>
<comment>Python:from kdeui import *</comment>
<comment>Python:from tdeui import *</comment>
<widget class="QWidget">
<property name="name">
<cstring>ToolTip</cstring>

@ -17,8 +17,8 @@
###########################################################################
from qt import *
from kdeui import *
from kdecore import *
from tdeui import *
from tdecore import *
import sys
import os
import os.path

@ -17,8 +17,8 @@
###########################################################################
from qt import *
from kdeui import *
from kdecore import *
from tdeui import *
from tdecore import *
from kfile import *
import sys
import os.path

@ -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

@ -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."))

Loading…
Cancel
Save