From 6dec101d43dcbd4195c47d54bd388db1a8d7230e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 17 Jun 2012 17:28:28 -0500 Subject: Automated update from Qt3 --- src/tools/qgdict.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tools/qgdict.cpp') diff --git a/src/tools/qgdict.cpp b/src/tools/qgdict.cpp index 225745243..e794a43f1 100644 --- a/src/tools/qgdict.cpp +++ b/src/tools/qgdict.cpp @@ -934,7 +934,7 @@ TQDataStream &TQGDict::read( TQDataStream &s ) break; case IntKey: { - Q_UINT32 k; + TQ_UINT32 k; s >> k; read( s, d ); look_int( k, d, op_insert ); @@ -942,7 +942,7 @@ TQDataStream &TQGDict::read( TQDataStream &s ) break; case PtrKey: { - Q_UINT32 k; + TQ_UINT32 k; s >> k; read( s, d ); // ### cannot insert 0 - this renders the thing @@ -977,10 +977,10 @@ TQDataStream& TQGDict::write( TQDataStream &s ) const s << ((TQAsciiBucket*)n)->getKey(); break; case IntKey: - s << (Q_UINT32)((TQIntBucket*)n)->getKey(); + s << (TQ_UINT32)((TQIntBucket*)n)->getKey(); break; case PtrKey: - s << (Q_UINT32)0; // ### cannot serialize a pointer + s << (TQ_UINT32)0; // ### cannot serialize a pointer break; } write( s, n->getData() ); // write data -- cgit v1.2.1