ui: Clearing error count when parsing starts
* fixed undo showed errors twice when activated from status bar.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#ifndef MESSAGE_CLEAR_ERROR_COUNT_H
|
||||
#define MESSAGE_CLEAR_ERROR_COUNT_H
|
||||
|
||||
#include "utility/messaging/Message.h"
|
||||
|
||||
class MessageClearErrorCount
|
||||
: public Message<MessageClearErrorCount>
|
||||
{
|
||||
public:
|
||||
MessageClearErrorCount()
|
||||
{
|
||||
setSendAsTask(false);
|
||||
}
|
||||
|
||||
static const std::string getStaticType()
|
||||
{
|
||||
return "MessageClearErrorCount";
|
||||
}
|
||||
};
|
||||
|
||||
#endif // MESSAGE_CLEAR_ERROR_COUNT_H
|
||||
Reference in New Issue
Block a user