Changeset 9606 for code/branches/core6/src/libraries/core/ClassTreeMask.cc
- Timestamp:
- Mar 30, 2013, 7:26:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/core/ClassTreeMask.cc
r9563 r9606 849 849 // If there is a first subclass, move the object-iterator to the first object of this class. Else go to the end 850 850 if (this->subclassIterator_ != this->subclasses_.end()) 851 this->objectIterator_ = this->subclassIterator_->first->getObjects()->begin();851 this->objectIterator_ = Context::getRootContext()->getObjectList(this->subclassIterator_->first)->begin(); 852 852 else 853 853 this->objectIterator_ = ObjectList<BaseObject>::end(); … … 881 881 // Check if there really is a next class. If yes, move the object-iterator to the first object 882 882 if (this->subclassIterator_ != this->subclasses_.end()) 883 this->objectIterator_ = this->subclassIterator_->first->getObjects()->begin();883 this->objectIterator_ = Context::getRootContext()->getObjectList(this->subclassIterator_->first)->begin(); 884 884 else 885 885 return (*this);
Note: See TracChangeset
for help on using the changeset viewer.