1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 03:19:40 +00:00

Don't report script operation status via messageBox (Bug #1942)

This commit is contained in:
scrawl 2014-12-11 20:51:02 +01:00
parent 6eebe9b44c
commit d955017079
2 changed files with 1 additions and 2 deletions

View file

@ -205,7 +205,6 @@ namespace MWScript
void InterpreterContext::report (const std::string& message)
{
messageBox (message);
}
bool InterpreterContext::menuMode()

View file

@ -78,7 +78,7 @@ namespace MWScript
const std::vector<std::string>& buttons);
virtual void report (const std::string& message);
///< By default echo via messageBox.
///< By default, do nothing.
virtual bool menuMode();