template<class type, class allocator>
Removes the first item.
Definition at line 147 of file qptrlist.h. References FX::QPtrList< type, allocator >::deleteItem(), and FX::QPtrList< type, allocator >::isEmpty(). 00148 { 00149 if(isEmpty()) return false; 00150 typename Base::iterator it=Base::begin(); 00151 deleteItem(*it); 00152 Base::pop_front(); 00153 return true; 00154 }
|