template<class type>
Inserts item d into the list at where iterator it points.
Definition at line 439 of file qptrvector.h. References FXEXCEPTION_STL1, FXEXCEPTION_STL2, and FX::QPtrVectorIterator< type >::int_getIterator(). 00440 { 00441 FXEXCEPTION_STL1 { std::vector<type *>::insert(it.int_getIterator(), const_cast<type *>(d));} FXEXCEPTION_STL2; 00442 return true; 00443 }
|