diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-13 13:18:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-13 13:18:58 +0900 |
commit | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (patch) | |
tree | 40765573bcccd42239475344141eb98d2ac5d45e /src/tools/ntqglist.h | |
parent | 926102a455014e6ab308aaced19e32eed7ed4414 (diff) | |
download | tqt3-1ba13366a7a377d50b9e8df9044ce11d8209f98c.tar.gz tqt3-1ba13366a7a377d50b9e8df9044ce11d8209f98c.zip |
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tools/ntqglist.h')
-rw-r--r-- | src/tools/ntqglist.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/ntqglist.h b/src/tools/ntqglist.h index a3fce491e..247c4f68f 100644 --- a/src/tools/ntqglist.h +++ b/src/tools/ntqglist.h @@ -45,7 +45,7 @@ #include "ntqptrcollection.h" #endif // QT_H -class Q_EXPORT TQLNode +class TQ_EXPORT TQLNode { friend class TQGList; friend class TQGListIterator; @@ -63,7 +63,7 @@ class TQMutex; class TQGListPrivate; class TQGListIteratorList; // internal helper class -class Q_EXPORT TQGList : public TQPtrCollection // doubly linked generic list +class TQ_EXPORT TQGList : public TQPtrCollection // doubly linked generic list { friend class TQGListIterator; friend class TQGListIteratorList; @@ -212,15 +212,15 @@ inline TQPtrCollection::Item TQGList::clast() const *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQGList & ); -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQGList & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQGList & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQGList & ); #endif /***************************************************************************** TQGListIterator class *****************************************************************************/ -class Q_EXPORT TQGListIterator // TQGList iterator +class TQ_EXPORT TQGListIterator // TQGList iterator { friend class TQGList; friend class TQGListIteratorList; @@ -265,7 +265,7 @@ inline TQPtrCollection::Item TQGListIterator::get() const return curNode ? curNode->data : 0; } -class Q_EXPORT TQGListStdIterator +class TQ_EXPORT TQGListStdIterator { public: inline TQGListStdIterator( TQLNode* n ) : node( n ){} |