diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/tools/qgvector.cpp | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <[email protected]>
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 |