diff options
author | Eugene Sandulenko | 2017-08-05 23:32:31 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-08-05 23:50:45 +0200 |
commit | a00ca84bdb2f5b69f5c620fcb1fe1a13c2bfba32 (patch) | |
tree | f2a7723fdae3978fb4671dda5f49745db8387d7f | |
parent | 5091968f4c3ab927f2621d06fc2d064311fff8fa (diff) | |
download | scummvm-rg350-a00ca84bdb2f5b69f5c620fcb1fe1a13c2bfba32.tar.gz scummvm-rg350-a00ca84bdb2f5b69f5c620fcb1fe1a13c2bfba32.tar.bz2 scummvm-rg350-a00ca84bdb2f5b69f5c620fcb1fe1a13c2bfba32.zip |
WAGE: Implement Gui::clearOutput()
-rw-r--r-- | engines/wage/gui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index d8ac5d4d63..8bda5d33a7 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -330,8 +330,7 @@ void Gui::appendText(const char *s) { } void Gui::clearOutput() { - //_consoleWindow->clearAllContent(); - warning("STUB: Gui::clearOutput()"); + _consoleWindow->clearText(); } void Gui::actionCopy() { |