summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-21 18:37:56 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-21 18:37:56 -0600
commit3d1fa8562bf693237a1a76918b4487cca3e2e356 (patch)
treeb7433e34f990eaeae6905eafdd1e801111084bc0 /contrib
parent75a3ef0afbe95220d12b8ab4e63cfd3751abd353 (diff)
downloadpytde-3d1fa8562bf693237a1a76918b4487cca3e2e356.tar.gz
pytde-3d1fa8562bf693237a1a76918b4487cca3e2e356.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/kdepyuic4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/kdepyuic b/contrib/kdepyuic
index bdda64a..0b3d006 100755
--- a/contrib/kdepyuic
+++ b/contrib/kdepyuic
@@ -95,7 +95,7 @@ def checkOptions (optlist):
def addimport (n):
if addApp:
- n.write ('from tdecore import KCmdLineArgs, TDEApplication\n')
+ n.write ('from tdecore import TDECmdLineArgs, TDEApplication\n')
if i18nFunc:
n.write ('from tdecore import i18n\n')
n.write ('from tdeui import *\n\n')
@@ -106,7 +106,7 @@ def addapp (indent, n):
n.write (indent + 'description = ""\n')
n.write (indent + 'version = ""\n')
n.write ('\n')
- n.write (indent + 'KCmdLineArgs.init (sys.argv, appname, description, version)\n')
+ n.write (indent + 'TDECmdLineArgs.init (sys.argv, appname, description, version)\n')
n.write (indent + 'a = TDEApplication ()\n\n')
def doPyuic ():