summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:25:51 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:25:51 -0600
commit10d461f8a8b11ea740680361c20c4a378811e8a4 (patch)
treefb43cedf9cd3b06209af237c3cbbc9c0a8fb0896 /extensions
parent23c5b612d95f27d80c70adef92890955574a94bf (diff)
downloadpytde-10d461f8a8b11ea740680361c20c4a378811e8a4.tar.gz
pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.zip
Additional kde to tde renaming
Diffstat (limited to 'extensions')
-rw-r--r--extensions/dcopexport.py2
-rw-r--r--extensions/dcopext.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/dcopexport.py b/extensions/dcopexport.py
index 4b55223..5980ed2 100644
--- a/extensions/dcopexport.py
+++ b/extensions/dcopexport.py
@@ -50,7 +50,7 @@ stringTypes lists
from dcop import DCOPObject, DCOPClient
-from kdecore import dcop_add, dcop_next
+from tdecore import dcop_add, dcop_next
from qt import QString, QCString, QDataStream, IO_ReadOnly, IO_WriteOnly
numericTypes = ["char", "bool", "short", "int", "long", "uchar", "ushort", "uint", "ulong",
diff --git a/extensions/dcopext.py b/extensions/dcopext.py
index ba13871..0265891 100644
--- a/extensions/dcopext.py
+++ b/extensions/dcopext.py
@@ -33,7 +33,7 @@ copyright holder.
import re
from dcop import DCOPClient
from qt import QString, QCString, QByteArray, QDataStream, IO_ReadOnly, IO_WriteOnly
-from kdecore import dcop_add, dcop_next
+from tdecore import dcop_add, dcop_next
# XXX: 64 bit integers might be handeld wrong! pythons int is AFAIK 32 bit,
# but pythons long is a arbitrary-precision integer. how to handle that?