Changeset 1416 for code/branches/console/src/core/OutputHandler.cc
- Timestamp:
- May 25, 2008, 1:11:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/OutputHandler.cc
r1341 r1416 38 38 namespace orxonox 39 39 { 40 SetConsoleCommandShortcutGeneric(log, create Executor(createFunctor(&OutputHandler::log), "log" ));41 SetConsoleCommandShortcutGeneric(error, create Executor(createFunctor(&OutputHandler::error), "error" ));42 SetConsoleCommandShortcutGeneric(warning, create Executor(createFunctor(&OutputHandler::warning), "warning"));43 SetConsoleCommandShortcutGeneric(info, create Executor(createFunctor(&OutputHandler::info), "info" ));44 SetConsoleCommandShortcutGeneric(debug, create Executor(createFunctor(&OutputHandler::debug), "debug" ));40 SetConsoleCommandShortcutGeneric(log, createConsoleCommand(createFunctor(&OutputHandler::log), "log" )); 41 SetConsoleCommandShortcutGeneric(error, createConsoleCommand(createFunctor(&OutputHandler::error), "error" )); 42 SetConsoleCommandShortcutGeneric(warning, createConsoleCommand(createFunctor(&OutputHandler::warning), "warning")); 43 SetConsoleCommandShortcutGeneric(info, createConsoleCommand(createFunctor(&OutputHandler::info), "info" )); 44 SetConsoleCommandShortcutGeneric(debug, createConsoleCommand(createFunctor(&OutputHandler::debug), "debug" )); 45 45 46 46 /**
Note: See TracChangeset
for help on using the changeset viewer.