Show report view on all warnings or errors by default, can be disabled in preferences

This commit is contained in:
mwganson
2019-07-14 19:46:53 -05:00
committed by wmayer
parent c3aaa69f51
commit 287eff3b31
5 changed files with 49 additions and 2 deletions

View File

@@ -458,7 +458,7 @@ class BaseExport ConsoleObserver
{
public:
ConsoleObserver()
:bErr(true),bMsg(true),bLog(true),bWrn(true) {}
:bErr(true),bMsg(true),bLog(true),bWrn(true),bShow(true) {}
virtual ~ConsoleObserver() {}
/// get calls when a Warning is issued
virtual void Warning(const char *){}
@@ -470,7 +470,7 @@ public:
virtual void Log (const char *){}
virtual const char *Name(void){return 0L;}
bool bErr,bMsg,bLog,bWrn;
bool bErr,bMsg,bLog,bWrn,bShow;
};