template<class type, class allocator>
Removes the first item without auto-deletion.
Definition at line 202 of file qptrlist.h. References FX::QPtrList< type, allocator >::isEmpty(). 00203 { 00204 if(isEmpty()) return false; 00205 typename Base::iterator it=Base::begin(); 00206 Base::pop_front(); 00207 return true; 00208 }
|