Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 30, 2008, 11:58:31 PM (16 years ago)
Author:
landauf
Message:

fixed a bug in the event system
fixed a bug in Trigger and tweaked some features

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/core/BaseObject.cc

    r2065 r2069  
    217217    EventContainer* BaseObject::getEventContainer(const std::string& sectionname) const
    218218    {
    219         std::map<std::string, EventContainer*>::const_iterator it = this->eventContainers_.begin();
     219        std::map<std::string, EventContainer*>::const_iterator it = this->eventContainers_.find(sectionname);
    220220        if (it != this->eventContainers_.end())
    221221            return ((*it).second);
Note: See TracChangeset for help on using the changeset viewer.