Changeset 9667 for code/trunk/src/libraries/core/command/Shell.cc
- Timestamp:
- Aug 25, 2013, 9:08:42 PM (12 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core6 merged: 9552-9554,9556-9574,9577-9579,9585-9593,9596-9612,9626-9662
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/command/Shell.cc
r9550 r9667 40 40 #include "util/output/MemoryWriter.h" 41 41 #include "core/CoreIncludes.h" 42 #include "core/ ConfigFileManager.h"43 #include "core/ ConfigValueIncludes.h"42 #include "core/config/ConfigFileManager.h" 43 #include "core/config/ConfigValueIncludes.h" 44 44 #include "core/PathConfig.h" 45 45 #include "core/input/InputBuffer.h" … … 55 55 const OutputLevel User = level::user_info; 56 56 } 57 58 RegisterClassNoArgs(Shell); 57 59 58 60 /** … … 66 68 , bScrollable_(bScrollable) 67 69 { 68 Register RootObject(Shell);70 RegisterObject(Shell); 69 71 70 72 OutputManager::getInstance().registerListener(this); … … 96 98 Shell::~Shell() 97 99 { 98 this->inputBuffer_->destroy();100 delete this->inputBuffer_; 99 101 100 102 OutputManager::getInstance().unregisterListener(this);
Note: See TracChangeset
for help on using the changeset viewer.