Changeset 1026 for code/branches/core2/src/orxonox/core
- Timestamp:
- Apr 10, 2008, 6:08:32 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core2/src/orxonox/core/ConfigFileManager.cc
r1025 r1026 27 27 28 28 #include "ConfigFileManager.h" 29 #include "ConfigValueContainer.h" 29 30 #include "ConsoleCommand.h" 30 31 #include "Identifier.h" … … 401 402 { 402 403 for (std::map<std::string, Identifier*>::const_iterator it = Identifier::getIdentifierMapBegin(); it != Identifier::getIdentifierMapEnd(); ++it) 404 { 403 405 if ((*it).second->hasConfigValues() /* && (*it).second != ClassManager<KeyBinder>::getIdentifier()*/) 406 { 407 for (std::map<std::string, ConfigValueContainer*>::const_iterator it2 = (*it).second->getConfigValueMapBegin(); it2 != (*it).second->getConfigValueMapEnd(); ++it2) 408 (*it2).second->update(); 409 404 410 (*it).second->updateConfigValues(); 411 } 412 } 405 413 } 406 414 else if (type == CFT_Keybindings)
Note: See TracChangeset
for help on using the changeset viewer.