Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 20, 2011, 3:53:21 AM (13 years ago)
Author:
rgrieder
Message:

The output listener writing to the memory as buffer should record input of ALL levels, but instead be deactivated when not needed anymore.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/unity_build/src/libraries/core/command/Shell.cc

    r8079 r8515  
    8484
    8585        // Get the previous output and add it to the Shell
    86         for (OutputHandler::OutputVectorIterator it = OutputHandler::getInstance().getOutputVectorBegin();
    87             it != OutputHandler::getInstance().getOutputVectorEnd(); ++it)
     86        OutputHandler::OutputVector::const_iterator it = OutputHandler::getInstance().getOutput().begin();
     87        for (;it != OutputHandler::getInstance().getOutput().end(); ++it)
    8888        {
    8989            if (it->first <= this->getSoftDebugLevel())
Note: See TracChangeset for help on using the changeset viewer.