summaryrefslogtreecommitdiff
path: root/process_callback.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:26:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:26:50 +0200
commit669df123648aaa6aeccc70206b5417bc48b4e9ae (patch)
tree463c107a8d6405020bb304f7a7253e6b64afeee0 /process_callback.h
parent5.18 (diff)
downloadFreeFileSync-669df123648aaa6aeccc70206b5417bc48b4e9ae.tar.gz
FreeFileSync-669df123648aaa6aeccc70206b5417bc48b4e9ae.tar.bz2
FreeFileSync-669df123648aaa6aeccc70206b5417bc48b4e9ae.zip
5.19
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