Changeset 1728 for code/branches/core3/src/core
- Timestamp:
- Sep 7, 2008, 3:29:25 AM (16 years ago)
- Location:
- code/branches/core3/src/core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/core/CommandEvaluation.cc
r1716 r1728 304 304 305 305 if (command->defaultValueSet(i)) 306 output += "=" + command->getDefaultValue(i). toString() + "]";306 output += "=" + command->getDefaultValue(i).getString() + "]"; 307 307 else 308 308 output += "}"; -
code/branches/core3/src/core/ConfigValueContainer.cc
r1720 r1728 69 69 this->bIsVector_ = false; 70 70 71 this->defvalueString_ = this->value_. toString();71 this->defvalueString_ = this->value_.getString(); 72 72 this->update(); 73 73 } -
code/branches/core3/src/core/TclBind.cc
r1594 r1728 115 115 116 116 if (CommandExecutor::getLastEvaluation().hasReturnvalue()) 117 return CommandExecutor::getLastEvaluation().getReturnvalue(). toString();117 return CommandExecutor::getLastEvaluation().getReturnvalue().getString(); 118 118 119 119 return ""; -
code/branches/core3/src/core/TclThreadManager.cc
r1682 r1728 519 519 520 520 if (CommandExecutor::getLastEvaluation().hasReturnvalue()) 521 output = CommandExecutor::getLastEvaluation().getReturnvalue(). toString();521 output = CommandExecutor::getLastEvaluation().getReturnvalue().getString(); 522 522 } 523 523
Note: See TracChangeset
for help on using the changeset viewer.