ui: Update error count while parsing

This commit is contained in:
Eberhard Graether
2016-01-28 13:19:38 +01:00
parent 38f943e8a0
commit 635f6058c6
6 changed files with 19 additions and 9 deletions
@@ -7,7 +7,8 @@ class MessageShowErrors
: public Message<MessageShowErrors>
{
public:
MessageShowErrors()
MessageShowErrors(int errorCount)
: errorCount(errorCount)
{
}
@@ -15,6 +16,8 @@ public:
{
return "MessageShowErrors";
}
int errorCount;
};
#endif // MESSAGE_SHOW_ERRORS_H