summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /ui/batch_status_handler.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'ui/batch_status_handler.h')
-rw-r--r--ui/batch_status_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/batch_status_handler.h b/ui/batch_status_handler.h
index f5497b0f..bc4c5bde 100644
--- a/ui/batch_status_handler.h
+++ b/ui/batch_status_handler.h
@@ -28,12 +28,12 @@ public:
int& returnVal);
~BatchStatusHandler();
- virtual void updateStatusText(const Zstring& text);
virtual void initNewProcess(int objectsTotal, wxLongLong dataTotal, Process processID);
virtual void updateProcessedData(int objectsProcessed, wxLongLong dataProcessed);
+ virtual void reportInfo(const Zstring& text);
virtual void forceUiRefresh();
- void reportInfo(const wxString& infoMessage);
+ void logInfo(const wxString& infoMessage);
virtual void reportWarning(const wxString& warningMessage, bool& warningActive);
virtual ErrorHandler::Response reportError(const wxString& errorMessage);
virtual void reportFatalError(const wxString& errorMessage);
bgstack15