diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-09-28 03:03:35 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-09-28 03:03:35 +0200 |
commit | b7a62620df1c214340b86735a73d4c3b3b834565 (patch) | |
tree | 96a312c3bdaa3bb44f490232fcc5b4a3a61e629f /extensions | |
parent | 2749565477cea347d205d410e596d730a05941c9 (diff) | |
download | pytde-b7a62620df1c214340b86735a73d4c3b3b834565.tar.gz pytde-b7a62620df1c214340b86735a73d4c3b3b834565.zip |
Properly import python_tqt module - second part
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/dcopexport.py | 2 | ||||
-rw-r--r-- | extensions/dcopext.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/dcopexport.py b/extensions/dcopexport.py index 4269d67..b7eb3e6 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 qt import TQString, TQCString, TQDataStream, IO_ReadOnly, IO_WriteOnly +from python_tqt.qt 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", diff --git a/extensions/dcopext.py b/extensions/dcopext.py index e854996..2997b85 100644 --- a/extensions/dcopext.py +++ b/extensions/dcopext.py @@ -32,7 +32,7 @@ copyright holder. import re from dcop import DCOPClient -from qt import TQString, TQCString, TQByteArray, TQDataStream, IO_ReadOnly, IO_WriteOnly +from python_tqt.qt import TQString, TQCString, TQByteArray, TQDataStream, IO_ReadOnly, IO_WriteOnly from tdecore import dcop_add, dcop_next # XXX: 64 bit integers might be handeld wrong! pythons int is AFAIK 32 bit, |