summaryrefslogtreecommitdiffstats
path: root/extensions/dcopexport.py
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/dcopexport.py')
-rw-r--r--extensions/dcopexport.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/dcopexport.py b/extensions/dcopexport.py
index 7af07f1..b2dd154 100644
--- a/extensions/dcopexport.py
+++ b/extensions/dcopexport.py
@@ -51,7 +51,7 @@ stringTypes lists
from dcop import DCOPObject, DCOPClient
from tdecore import dcop_add, dcop_next
-from PyTQt.qt import TQString, TQCString, TQDataStream, IO_ReadOnly, IO_WriteOnly
+from PyTQt.tqt import TQString, TQCString, TQDataStream, IO_ReadOnly, IO_WriteOnly
numericTypes = ["char", "bool", "short", "int", "long", "uchar", "ushort", "uint", "ulong",
"unsigned char", "unsigned short", "unsigned int", "unsigned long",
@@ -72,7 +72,7 @@ class DCOPExObj (DCOPObject):
_meth = DCOPClient.normalizeFunctionSignature(meth).replace (">", "> ")
# see if this method is available from us via DCOP
- # if we don't have it, maybe DCOPObject already provides it (eg - qt object)
+ # if we don't have it, maybe DCOPObject already provides it (eg - tqt object)
if not self.matchMethod (_meth):
return DCOPObject.process(self, _meth, data, replyType, replyData);