Changeset 1162

Show
Ignore:
Timestamp:
04/15/08 04:49:17 (4 weeks ago)
Author:
vossg
Message:

changed: renamed fields (missing from initial commit)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/NodeCores/Groups/Misc/OSGMultiCore.cpp

    r1110 r1162  
    124124void MultiCore::accumulateMatrix(Matrix &result) 
    125125{ 
    126     CoresFieldType::const_iterator coreIt  = _mfCores.begin(); 
    127     CoresFieldType::const_iterator coreEnd = _mfCores.end  (); 
     126    MFUnrecChildNodeCorePtr::const_iterator coreIt  = _mfCores.begin(); 
     127    MFUnrecChildNodeCorePtr::const_iterator coreEnd = _mfCores.end  (); 
    128128 
    129129    while(coreIt != coreEnd) 
     
    137137void MultiCore::adjustVolume(Volume &volume) 
    138138{ 
    139     CoresFieldType::const_iterator coreIt  = _mfCores.begin(); 
    140     CoresFieldType::const_iterator coreEnd = _mfCores.end  (); 
     139    MFUnrecChildNodeCorePtr::const_iterator coreIt  = _mfCores.begin(); 
     140    MFUnrecChildNodeCorePtr::const_iterator coreEnd = _mfCores.end  (); 
    141141 
    142142    while(coreIt != coreEnd) 
     
    158158    RenderAction *a = dynamic_cast<RenderAction *>(action); 
    159159 
    160     CoresFieldType::const_iterator coreIt  = this->getCores().begin(); 
    161     CoresFieldType::const_iterator coreEnd = this->getCores().end  (); 
     160    MFUnrecChildNodeCorePtr::const_iterator coreIt  = this->getCores().begin(); 
     161    MFUnrecChildNodeCorePtr::const_iterator coreEnd = this->getCores().end  (); 
    162162 
    163163    Action::ResultE returnValue = Action::Continue; 
     
    183183    RenderAction *a = dynamic_cast<RenderAction *>(action); 
    184184 
    185     CoresFieldType::const_iterator coreIt  = this->getCores().begin(); 
    186     CoresFieldType::const_iterator coreEnd = this->getCores().end  (); 
     185    MFUnrecChildNodeCorePtr::const_iterator coreIt  = this->getCores().begin(); 
     186    MFUnrecChildNodeCorePtr::const_iterator coreEnd = this->getCores().end  (); 
    187187 
    188188    Action::ResultE returnValue = Action::Continue; 
  • trunk/Source/System/NodeCores/Groups/Misc/OSGMultiCore.h

    r1106 r1162  
    6161    typedef MultiCoreBase                         Inherited; 
    6262    typedef MultiCore                             Self; 
    63  
    64     typedef MFUnrecFieldContainerChildNodeCorePtr CoresFieldType; 
    6563 
    6664    /*---------------------------------------------------------------------*/