Refactored verbosity handling with new setter&getter
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6494 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
401dbe8aed
commit
d91176ba49
4 changed files with 45 additions and 40 deletions
|
@ -146,10 +146,12 @@ class CEXEBuild {
|
|||
// C++ macro definitions such as _UNICODE.
|
||||
void define(const TCHAR *p, const TCHAR *v=_T("")); // to add a defined thing.
|
||||
|
||||
int display_errors;
|
||||
int display_script;
|
||||
int display_warnings;
|
||||
int display_info;
|
||||
int get_verbosity() const;
|
||||
void set_verbosity(int lvl);
|
||||
bool display_errors;
|
||||
bool display_script;
|
||||
bool display_warnings;
|
||||
bool display_info;
|
||||
|
||||
int linecnt;
|
||||
const TCHAR *curfilename;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue