template<class type, class allocator>
Destructively copies a FX::QPtrList very quickly.
Definition at line 595 of file qptrlist.h. References FX::QQuickList< type, allocator >::asPtrList(), and FX::QQuickList< type, allocator >::QQuickList(). 00595 { 00596 #endif 00597 #else 00598 explicit QQuickList(QPtrList<type, allocator> &&o) : QPtrList<type, allocator>(true) 00599 { 00600 #endif 00601 Base::splice(Base::begin(), o, o.begin(), o.end()); 00602 }
|