diff options
author | Darrell Anderson <[email protected]> | 2012-06-18 00:09:52 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-06-18 00:09:52 -0500 |
commit | d1096751ddb25cdef23919c17389fc268c31edaf (patch) | |
tree | b910be3588cb706defc00c31aefa850bb2312784 /tools/designer/shared/uib.h | |
parent | af8fdcf1ca7bdbda6f0c1afecd8c2d8ffa23bebb (diff) | |
parent | 6dec101d43dcbd4195c47d54bd388db1a8d7230e (diff) | |
download | tqt3-d1096751ddb25cdef23919c17389fc268c31edaf.tar.gz tqt3-d1096751ddb25cdef23919c17389fc268c31edaf.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
Diffstat (limited to 'tools/designer/shared/uib.h')
-rw-r--r-- | tools/designer/shared/uib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/designer/shared/uib.h b/tools/designer/shared/uib.h index d4b09addf..47c6f08f2 100644 --- a/tools/designer/shared/uib.h +++ b/tools/designer/shared/uib.h @@ -36,7 +36,7 @@ #include <ntqdatastream.h> -const Q_UINT32 UibMagic = 0xb77c61d8; +const TQ_UINT32 UibMagic = 0xb77c61d8; enum BlockTag { Block_End = '$', Block_Actions = 'A', Block_Buddies = 'B', Block_Connections = 'C', Block_Functions = 'F', @@ -108,7 +108,7 @@ inline int UibStrTable::insertCString( const char *cstr ) return i; } for ( i = 0; i < len + 1; i++ ) - out << (Q_UINT8) cstr[i]; + out << (TQ_UINT8) cstr[i]; return nextPos; } } @@ -117,7 +117,7 @@ inline int UibStrTable::insertString( const TQString& str ) { if ( str.contains('\0') || str[0] == TQChar(0x7f) ) { int nextPos = table.size(); - out << (Q_UINT8) 0x7f; + out << (TQ_UINT8) 0x7f; out << str; return nextPos; } else { |