- Timestamp:
- Aug 19, 2010, 4:57:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/TclThreadManager.cc
r7174 r7189 439 439 // It's a query to the CommandExecutor 440 440 TclThreadManager::debug("TclThread_query -> CE: " + command); 441 if (!CommandExecutor::execute(command, false)) 441 bool success; 442 output = CommandExecutor::query(command, &success, false); 443 if (!success) 442 444 TclThreadManager::error("Error: Can't execute command \"" + command + "\"!"); 443 444 if (CommandExecutor::getLastEvaluation().hasReturnvalue())445 output = CommandExecutor::getLastEvaluation().getReturnvalue().getString();446 445 } 447 446 else
Note: See TracChangeset
for help on using the changeset viewer.