Lines Matching refs:it
28 for ( std::list<TemporaryItem*>::iterator it = itemlist.begin(); it != itemlist.end(); ++it ) {
29 TemporaryItem * tempitem = *it;
49 // check if the item is in the list, if so, delete it. (in other words, don't wait for the item to delete itself)
51 for ( std::list<TemporaryItem*>::iterator it = itemlist.begin(); it != itemlist.end(); ++it ) {
52 if ( *it == tempitem ) {
67 // no need to delete the item, it does that itself after signal_timeout.emit() completes