diff options
author | Timothy Pearson <[email protected]> | 2012-06-17 17:28:28 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-06-17 17:28:28 -0500 |
commit | 6dec101d43dcbd4195c47d54bd388db1a8d7230e (patch) | |
tree | 7c336cbed3a93807a34cd4df39b2f92a7d48a141 /tools/designer/shared/uib.h | |
parent | f27c2533f735d53c6b555f387c6390c0690cc246 (diff) | |
download | tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.tar.gz tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.zip |
Automated update from Qt3
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 { |