summaryrefslogtreecommitdiffstats
path: root/src/tools/ntqvaluevector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/ntqvaluevector.h')
-rw-r--r--src/tools/ntqvaluevector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/ntqvaluevector.h b/src/tools/ntqvaluevector.h
index 02a15111..6a50230e 100644
--- a/src/tools/ntqvaluevector.h
+++ b/src/tools/ntqvaluevector.h
@@ -547,10 +547,10 @@ template<class T>
Q_INLINE_TEMPLATES TQDataStream& operator>>( TQDataStream& s, TQValueVector<T>& v )
{
v.clear();
- Q_UINT32 c;
+ TQ_UINT32 c;
s >> c;
v.resize( c );
- for( Q_UINT32 i = 0; i < c; ++i )
+ for( TQ_UINT32 i = 0; i < c; ++i )
{
T t;
s >> t;
@@ -562,7 +562,7 @@ Q_INLINE_TEMPLATES TQDataStream& operator>>( TQDataStream& s, TQValueVector<T>&
template<class T>
Q_INLINE_TEMPLATES TQDataStream& operator<<( TQDataStream& s, const TQValueVector<T>& v )
{
- s << (Q_UINT32)v.size();
+ s << (TQ_UINT32)v.size();
// ### use typename TQValueVector<T>::const_iterator once all supported
// ### compilers know about the 'typename' keyword.
const T* it = v.begin();