- Timestamp:
- 01/24/08 15:11:54 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/FieldContainer/Node/OSGNodeCore.cpp
r1033 r1041 311 311 if(parentFieldId == ParentsFieldId) 312 312 { 313 FINFO(("NodeCore::linkParent: this [%p] pParent [%p]\n",314 this, pParent));313 FINFO(("NodeCore::linkParent: this [%p] [%u] pParent [%p] [%u]\n", 314 this, getContainerId(this), pParent, pParent != NULL ? getContainerId(pParent) : 0)); 315 315 316 316 FieldContainerParentPtr pTypedParent( … … 320 320 if(pTypedParent.getPointer() != NullFC) 321 321 { 322 editMField(ParentsFieldMask, _mfParents); 323 322 324 _mfParents.push_back(pTypedParent); 323 325 } … … 341 343 if(parentFieldId == ParentsFieldId) 342 344 { 343 FINFO(("NodeCore::unlinkParent: this [%p] pParent [%p]\n",344 this, pParent));345 FINFO(("NodeCore::unlinkParent: this [%p] [%u] pParent [%p] [%u]\n", 346 this, getContainerId(this), pParent, pParent != NULL ? getContainerId(pParent) : 0)); 345 347 346 348 FieldContainerParentPtr pTypedParent( … … 355 357 if(pI != _mfParents.end()) 356 358 { 359 editMField(ParentsFieldMask, _mfParents); 360 357 361 _mfParents.erase(pI); 358 362 }
