Changeset 6243 for code/branches/presentation2/src/libraries/core/Shell.cc
- Timestamp:
- Dec 4, 2009, 3:12:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/Shell.cc
r6190 r6243 98 98 SetConfigValue(historyOffset_, 0) 99 99 .callback(this, &Shell::commandHistoryOffsetChanged); 100 SetConfigValueVectorGeneric(commandHistoryConfigFileType_, commandHistory_, std::vector<std::string>());100 setConfigValueGeneric(this, &commandHistory_, commandHistoryConfigFileType_, "Shell", "commandHistory_", std::vector<std::string>()); 101 101 102 102 #ifdef ORXONOX_RELEASE … … 105 105 const unsigned int defaultLevel = 3; 106 106 #endif 107 SetConfigValueGeneric(ConfigFileType::Settings, softDebugLevel_, "softDebugLevel" + this->consoleName_, "OutputHandler", defaultLevel)107 setConfigValueGeneric(this, &softDebugLevel_, ConfigFileType::Settings, "OutputHandler", "softDebugLevel" + this->consoleName_, defaultLevel) 108 108 .description("The maximal level of debug output shown in the Shell"); 109 109 this->setSoftDebugLevel(this->softDebugLevel_);
Note: See TracChangeset
for help on using the changeset viewer.