summaryrefslogtreecommitdiffstats
path: root/doc/html/qmap-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qmap-h.html')
-rw-r--r--doc/html/qmap-h.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qmap-h.html b/doc/html/qmap-h.html
index d6e5319a3..aa67795ec 100644
--- a/doc/html/qmap-h.html
+++ b/doc/html/qmap-h.html
@@ -884,9 +884,9 @@ Q_INLINE_TEMPLATES void TQMap<Key,T>::detachInternal()
template<class Key, class T>
Q_INLINE_TEMPLATES TQDataStream& operator>>( TQDataStream& s, TQMap<Key,T>& m ) {
m.clear();
- Q_UINT32 c;
+ TQ_UINT32 c;
s >> c;
- for( Q_UINT32 i = 0; i < c; ++i ) {
+ for( TQ_UINT32 i = 0; i < c; ++i ) {
Key k; T t;
s >> k >> t;
m.insert( k, t );
@@ -899,7 +899,7 @@ Q_INLINE_TEMPLATES TQDataStream& operator>>( TQDataStream& s, TQMa
template<class Key, class T>
Q_INLINE_TEMPLATES TQDataStream& operator<<( TQDataStream& s, const TQMap<Key,T>& m ) {
- s << (Q_UINT32)m.size();
+ s << (TQ_UINT32)m.size();
TQMapConstIterator<Key,T> it = m.begin();
for( ; it != m.end(); ++it )
s << it.key() << it.data();