diff options
author | Timothy Pearson <[email protected]> | 2011-11-06 02:25:51 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-06 02:25:51 -0600 |
commit | 10d461f8a8b11ea740680361c20c4a378811e8a4 (patch) | |
tree | fb43cedf9cd3b06209af237c3cbbc9c0a8fb0896 /contrib | |
parent | 23c5b612d95f27d80c70adef92890955574a94bf (diff) | |
download | pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.tar.gz pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.zip |
Additional kde to tde renaming
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/kdepyuic | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/kdepyuic b/contrib/kdepyuic index 9110421..fe9b413 100755 --- a/contrib/kdepyuic +++ b/contrib/kdepyuic @@ -63,7 +63,7 @@ def getOptions (): Options: -a, --noapp Don't add KApplication code - -i, --noimport Don't add kdecore, kdeui import statements + -i, --noimport Don't add tdecore, tdeui import statements -p, --pyuic Path to pyuic program --usekdei18n Adds KDEs default i18n functions to your Python KDE ui file """ @@ -95,10 +95,10 @@ def checkOptions (optlist): def addimport (n): if addApp: - n.write ('from kdecore import KCmdLineArgs, KApplication\n') + n.write ('from tdecore import KCmdLineArgs, KApplication\n') if i18nFunc: - n.write ('from kdecore import i18n\n') - n.write ('from kdeui import *\n\n') + n.write ('from tdecore import i18n\n') + n.write ('from tdeui import *\n\n') def addapp (indent, n): |