diff options
Diffstat (limited to 'src/tools/qgvector.cpp')
-rw-r--r-- | src/tools/qgvector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/qgvector.cpp b/src/tools/qgvector.cpp index 2c8b13d68..0253151a3 100644 --- a/src/tools/qgvector.cpp +++ b/src/tools/qgvector.cpp @@ -126,7 +126,7 @@ int TQGVector::compareItems( Item d1, Item d2 ) return d1 != d2; // compare pointers } -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM /*! Reads a collection/vector item from the stream \a s and returns a reference to the stream. @@ -155,7 +155,7 @@ TQDataStream &TQGVector::write( TQDataStream &s, Item ) const { // write item to stream return s; } -#endif // QT_NO_DATASTREAM +#endif // TQT_NO_DATASTREAM /***************************************************************************** TQGVector member functions @@ -540,7 +540,7 @@ void TQGVector::warningIndexRange( uint i ) /***************************************************************************** TQGVector stream functions *****************************************************************************/ -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM TQDataStream &operator>>( TQDataStream &s, TQGVector &vec ) { // read vector return vec.read( s ); @@ -595,4 +595,4 @@ bool TQGVector::operator==( const TQGVector &v ) const return TRUE; } -#endif // QT_NO_DATASTREAM +#endif // TQT_NO_DATASTREAM |