Changeset 8834 for code/branches/output/src/libraries/core
- Timestamp:
- Aug 12, 2011, 12:26:40 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/core/command/Shell.cc
r8833 r8834 39 39 #include "util/StringUtils.h" 40 40 #include "util/SubString.h" 41 #include "util/output/OutputManager.h" 41 42 #include "util/output/MemoryWriter.h" 42 43 #include "core/CoreIncludes.h" … … 71 72 */ 72 73 Shell::Shell(const std::string& consoleName, bool bScrollable) 73 : BaseWriter(consoleName )74 : BaseWriter(consoleName, false) 74 75 , inputBuffer_(new InputBuffer()) 75 76 , bScrollable_(bScrollable) 76 77 { 77 78 RegisterRootObject(Shell); 79 80 OutputManager::getInstance().registerListener(this); 78 81 79 82 this->scrollPosition_ = 0; … … 104 107 { 105 108 this->inputBuffer_->destroy(); 109 110 OutputManager::getInstance().unregisterListener(this); 106 111 } 107 112
Note: See TracChangeset
for help on using the changeset viewer.