diff options
Diffstat (limited to 'doc/html/qvaluelist-h.html')
-rw-r--r-- | doc/html/qvaluelist-h.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/qvaluelist-h.html b/doc/html/qvaluelist-h.html index a247846a4..16d084b87 100644 --- a/doc/html/qvaluelist-h.html +++ b/doc/html/qvaluelist-h.html @@ -474,7 +474,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(); } @@ -490,7 +490,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 |