template<class type, class allocator>
Removes the last item without auto-deletion.
Definition at line 210 of file qptrlist.h. References FX::QPtrList< type, allocator >::isEmpty(). 00211 { 00212 if(isEmpty()) return false; 00213 typename Base::iterator it=--Base::end(); 00214 Base::pop_back(); 00215 return true; 00216 }
|