diff options
Diffstat (limited to 'extensions/dcopext.py')
-rw-r--r-- | extensions/dcopext.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/dcopext.py b/extensions/dcopext.py index 837835c..5956d26 100644 --- a/extensions/dcopext.py +++ b/extensions/dcopext.py @@ -40,7 +40,7 @@ from tdecore import dcop_add, dcop_next # # I think 64 bit types would be: # long long, unsigned long long, long long int, unsigned long long int, -# TQ_LLONG, TQ_ULLONG, TQ_INT64, TQ_UINT64 +# TQ_LLONG, TQ_ULLONG, TTQ_INT64, TTQ_UINT64 # # and on some (most?) systems: # TQtOffset @@ -49,8 +49,8 @@ from tdecore import dcop_add, dcop_next # but python has a complex type POD = set(['char','short','int','long','float','double']) typedefIntTypes = set(["uchar", "ushort", "uint", "ulong", - "Q_INT8", "Q_INT16", "Q_INT32", "Q_LONG", - "Q_UINT8", "Q_UINT16", "Q_UINT32", "Q_ULONG", + "TQ_INT8", "Q_INT16", "TQ_INT32", "TQ_LONG", + "TQ_UINT8", "Q_UINT16", "TQ_UINT32", "Q_ULONG", "sitze_t", "ssize_t", "int8_t", "int16_t", "int32_t", "uint8_t", "uint16_t", "uint32_t", "pid_t", "uid_t", "off_t"]) |