Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 19, 2008, 4:10:27 AM (16 years ago)
Author:
landauf
Message:
  • fixed bug #1 in ConfigValueContainer (callback not being called the first time)
  • fixed another bug in XMLPort, caused by the recently added support for extern types
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core3/src/core/ConfigValueContainer.cc

    r1596 r1610  
    6060        this->varname_ = varname;
    6161        this->callback_ = 0;
     62        this->bContainerIsNew_ = true;
     63        this->bDoInitialCallback_ = false;
     64        this->bAddedDescription_ = false;
    6265
    6366        this->value_ = defvalue;
    64         this->bAddedDescription_ = false;
    6567        this->bIsVector_ = false;
    6668
     
    8284        this->sectionname_ = identifier->getName();
    8385        this->varname_ = varname;
     86        this->callback_ = 0;
     87        this->bContainerIsNew_ = true;
     88        this->bDoInitialCallback_ = false;
     89        this->bAddedDescription_ = false;
    8490
    8591        this->valueVector_ = defvalue;
    86         this->bAddedDescription_ = false;
    8792        this->bIsVector_ = true;
    8893
Note: See TracChangeset for help on using the changeset viewer.