Changeset 8805 for code/branches/output/src/libraries/core/command
- Timestamp:
- Jul 31, 2011, 11:45:56 AM (13 years ago)
- Location:
- code/branches/output/src/libraries/core/command
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/core/command/IOConsolePOSIX.cc
r8803 r8805 240 240 switch (type) 241 241 { 242 case Shell::Message: 242 243 case Shell::DebugOutput: this->cout_ << "\033[0m"; break; 243 244 -
code/branches/output/src/libraries/core/command/IOConsoleWindows.cc
r8803 r8805 201 201 switch (type) 202 202 { 203 case Shell::Message: 203 204 case Shell::DebugOutput: colour = FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE; break; 204 205 … … 249 250 || !SetConsoleMode(this->stdInHandle_, 0)) 250 251 { 251 COUT(1) << "Error: Could not set Windows console settings" << std::endl;252 orxout(user_error) << "Error: Could not set Windows console settings" << endl; 252 253 return; 253 254 } -
code/branches/output/src/libraries/core/command/Shell.h
r8803 r8805 91 91 { 92 92 DebugOutput = debug_output, 93 Message = message, 93 94 UserError = user_error, 94 95 UserWarning = user_warning,
Note: See TracChangeset
for help on using the changeset viewer.