- Timestamp:
- 04/02/08 14:18:07 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/Action/RenderAction/OSGRenderAction.cpp
r997 r1072 485 485 else if(! _useNewList) // new list is empty, but not used? 486 486 { 487 std::vector<NodePtr>::const_iterator it; 488 489 for( it = node->getMFChildren()->begin(); 490 it != node->getMFChildren()->end(); 491 ++it) 487 Node::ChildrenFieldType::const_iterator childIt; 488 Node::ChildrenFieldType::const_iterator childEnd; 489 490 for( childIt = node->getMFChildren()->begin(); 491 childIt != childEnd; 492 ++childIt) 492 493 { 493 result = recurse(* it);494 result = recurse(*childIt); 494 495 495 496 if(result != Continue) … … 712 713 if(st != NullFC) 713 714 { 714 this->dropFunctor(func, 715 getCPtr(st), 716 pMat->getSortKey() + uiPass); 715 this->dropFunctor(func, st, pMat->getSortKey() + uiPass); 717 716 } 718 717 else
