summaryrefslogtreecommitdiff
path: root/library/statusHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/statusHandler.h')
-rw-r--r--library/statusHandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/statusHandler.h b/library/statusHandler.h
index 70f8c2d8..4c12035d 100644
--- a/library/statusHandler.h
+++ b/library/statusHandler.h
@@ -2,7 +2,7 @@
#define STATUSHANDLER_H_INCLUDED
#include <wx/string.h>
-#include <wx/thread.h>
+
const int UI_UPDATE_INTERVAL = 100; //perform ui updates not more often than necessary, 100 seems to be a good value with only a minimal performance loss
@@ -21,7 +21,7 @@ public:
enum Response
{
- CONTINUE_NEXT = 10,
+ IGNORE_ERROR = 10,
RETRY
};
virtual Response reportError(const wxString& text) = 0;
bgstack15