Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 10, 2008, 5:35:20 PM (16 years ago)
Author:
landauf
Message:

fixed bug, removed some debug output

File:
1 edited

Legend:

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

    r1020 r1023  
    5353        this->varname_ = varname;
    5454
     55        this->value_ = defvalue;
    5556        this->bAddedDescription_ = false;
    5657
     
    9798    void ConfigValueContainer::update()
    9899    {
    99 std::cout << "AAA1: " << this->value_ << std::endl;
    100 std::cout << "    : " << ConfigFileManager::getSingleton()->getValue(this->type_, this->sectionname_, this->varname_, this->defvalueString_) << std::endl;
    101100        this->value_.fromString(ConfigFileManager::getSingleton()->getValue(this->type_, this->sectionname_, this->varname_, this->defvalueString_));
    102 std::cout << "AAA2: " << this->value_ << std::endl;
    103101    }
    104102
Note: See TracChangeset for help on using the changeset viewer.