template<class type, class allocator>
Replaces item at index i with d.
Definition at line 306 of file qptrlist.h. References FX::QPtrList< type, allocator >::isEmpty(). 00307 { 00308 if(isEmpty()) return false; 00309 typename Base::iterator it=int_idx(i); 00310 *it=d; 00311 //list<type *>::erase(list<type *>::begin()+i); 00312 //list<type *>::insert(list<type *>::begin()+i, d); 00313 return true; 00314 }
|