diff options
Diffstat (limited to 'src/tools/ntqvaluelist.h')
-rw-r--r-- | src/tools/ntqvaluelist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/ntqvaluelist.h b/src/tools/ntqvaluelist.h index c217a7892..411c2dd75 100644 --- a/src/tools/ntqvaluelist.h +++ b/src/tools/ntqvaluelist.h @@ -439,7 +439,7 @@ public: TQValueList( const std::list<T>& l ) { sh = new TQValueListPrivate<T>; - qCopy( l.begin(), l.end(), std::back_inserter( *this ) ); + tqCopy( l.begin(), l.end(), std::back_inserter( *this ) ); } #endif ~TQValueList() { sh->derefAndDelete(); } @@ -455,7 +455,7 @@ public: TQValueList<T>& operator= ( const std::list<T>& l ) { detach(); - qCopy( l.begin(), l.end(), std::back_inserter( *this ) ); + tqCopy( l.begin(), l.end(), std::back_inserter( *this ) ); return *this; } bool operator== ( const std::list<T>& l ) const |