summaryrefslogtreecommitdiff
path: root/process_callback.h
diff options
context:
space:
mode:
Diffstat (limited to 'process_callback.h')
-rw-r--r--process_callback.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/process_callback.h b/process_callback.h
index 036ad79a..fcf0384e 100644
--- a/process_callback.h
+++ b/process_callback.h
@@ -51,7 +51,7 @@ struct ProcessCallback
//opportunity to abort must be implemented in a frequently executed method like requestUiRefresh()
virtual void requestUiRefresh() = 0; //throw ?
- virtual void forceUiRefresh () = 0; //throw ? - called before starting long running task which doesn't update regularly
+ virtual void forceUiRefresh () = 0; //throw ? - called before starting long running tasks which don't update regularly
//called periodically after data was processed: expected(!) to request GUI update
virtual void reportStatus(const std::wstring& text) = 0; //UI info only, should not be logged!
@@ -71,4 +71,4 @@ struct ProcessCallback
virtual void reportFatalError(const std::wstring& errorMessage) = 0; //non-recoverable error situation
};
-#endif //PROC_HEADER_48257827842345454545 \ No newline at end of file
+#endif //PROC_HEADER_48257827842345454545
bgstack15