Changeset 6139 for code/branches/presentation2/src/libraries
- Timestamp:
- Nov 25, 2009, 12:06:15 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/Shell.cc
r6105 r6139 265 265 { 266 266 if (this->bPrependOutputLevel_) 267 output.insert(0, 1, static_cast<char>(level)); 267 { 268 if (level == 0) 269 output.insert(0, 1, static_cast<char>(-1)); 270 else 271 output.insert(0, 1, static_cast<char>(level)); 272 } 268 273 269 274 this->outputLines_.push_front(output);
Note: See TracChangeset
for help on using the changeset viewer.