Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9548


Ignore:
Timestamp:
Mar 12, 2013, 10:12:45 PM (11 years ago)
Author:
landauf
Message:

eclipse missed some files…

Location:
code/branches/testing/src/libraries/core/command
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/testing/src/libraries/core/command/IOConsolePOSIX.cc

    r9536 r9548  
    7676
    7777        // Disable standard std::cout logging
    78         OutputManager::getInstance().getConsoleWriter().disable();
     78        OutputManager::getInstance().getConsoleWriter()->disable();
    7979        // Redirect std::cout to an ostringstream
    8080        // (Other part is in the initialiser list)
     
    104104        std::cout.rdbuf(this->cout_.rdbuf());
    105105        // Enable standard std::cout logging again
    106         OutputManager::getInstance().getConsoleWriter().enable();
     106        OutputManager::getInstance().getConsoleWriter()->enable();
    107107    }
    108108
  • code/branches/testing/src/libraries/core/command/IOConsoleWindows.cc

    r9536 r9548  
    5454    {
    5555        // Disable standard this->cout_ logging
    56         OutputManager::getInstance().getConsoleWriter().disable();
     56        OutputManager::getInstance().getConsoleWriter()->disable();
    5757        // Redirect std::cout to an ostringstream
    5858        // (Other part is in the initialiser list)
     
    110110        std::cout.rdbuf(this->cout_.rdbuf());
    111111        // Enable standard this->cout_ logging again
    112         OutputManager::getInstance().getConsoleWriter().enable();
     112        OutputManager::getInstance().getConsoleWriter()->enable();
    113113
    114114        resetTerminalMode();
Note: See TracChangeset for help on using the changeset viewer.