ui: display fatal errors

* added ErrorCountInfo to incorporate reporting of fatal errors during code analysis.
This commit is contained in:
malte_langkabel
2016-03-02 10:53:04 +01:00
parent 4425b39ea1
commit 2ebfbbf88e
21 changed files with 105 additions and 213 deletions
+2 -1
View File
@@ -2,6 +2,7 @@
#define STATUS_BAR_VIEW_H
#include "component/view/View.h"
#include "data/ErrorCountInfo.h"
class StatusBarController;
@@ -13,7 +14,7 @@ public:
virtual std::string getName() const;
virtual void showMessage(const std::string& message, bool isError, bool showLoader) = 0;
virtual void setErrorCount(size_t count) = 0;
virtual void setErrorCount(ErrorCountInfo errorCount) = 0;
protected:
StatusBarController* getController();