template<class type, class allocator>
Removes the item at index i.
Definition at line 108 of file qptrlist.h. References FX::QPtrList< type, allocator >::deleteItem(), and FX::QPtrList< type, allocator >::isEmpty(). 00109 { 00110 if(isEmpty()) return false; 00111 typename Base::iterator it=int_idx(i); 00112 deleteItem(*it); 00113 Base::erase(it); 00114 return true; 00115 }
|