summaryrefslogtreecommitdiff
path: root/library/multithreading.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/multithreading.h')
-rw-r--r--library/multithreading.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/multithreading.h b/library/multithreading.h
index 56cff890..f2b5211c 100644
--- a/library/multithreading.h
+++ b/library/multithreading.h
@@ -20,7 +20,7 @@ public:
virtual int reportError(const wxString& text) = 0;
//this method is triggered repeatedly and can be used to refresh the ui by dispatching pending events
- virtual void triggerUI_Refresh() = 0;
+ virtual void triggerUI_Refresh(bool asyncProcessActive = false) = 0;
void requestAbortion() //opportunity to abort must be implemented in a frequently executed method like triggerUI_Refresh()
{ //currently used by the UI status information screen, when button "Abort is pressed"
bgstack15