Changeset 3662 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Mar 30, 2005, 12:02:34 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/p_node.cc
r3646 r3662 366 366 void PNode::remove() 367 367 { 368 NullParent* np = NullParent::getInstance(); 368 NullParent* nullParent = NullParent::getInstance(); 369 369 370 PNode* pn = this->children->enumerate(); 370 371 while( pn != NULL) 371 372 { 372 this->children->remove(pn);373 n p->addChild(pn, pn->getMode());373 //this->children->remove(pn); 374 nullParent->addChild(pn, pn->getMode()); 374 375 pn = this->children->nextElement(); 375 376 }
Note: See TracChangeset
for help on using the changeset viewer.