diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:11:56 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:11:56 +0200 |
commit | 98ecf620f7de377dc8ae9ad7fbd1e3b24477e138 (patch) | |
tree | faadc6d8822c20cd3bc6f50b2a98e6c580585949 /ui/batch_status_handler.h | |
parent | 3.16 (diff) | |
download | FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.tar.gz FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.tar.bz2 FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.zip |
3.17
Diffstat (limited to 'ui/batch_status_handler.h')
-rw-r--r-- | ui/batch_status_handler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/batch_status_handler.h b/ui/batch_status_handler.h index 61d8bddc..0e03141e 100644 --- a/ui/batch_status_handler.h +++ b/ui/batch_status_handler.h @@ -25,12 +25,12 @@ public: const wxString* logfileDirectory, //non-empty if logging shall be active size_t logFileMaxCount, const xmlAccess::OnError handleError, - const ffs3::SwitchToGui& switchBatchToGui, //functionality to change from batch mode to GUI mode + const zen::SwitchToGui& switchBatchToGui, //functionality to change from batch mode to GUI mode int& returnVal); ~BatchStatusHandler(); - virtual void initNewProcess(int objectsTotal, wxLongLong dataTotal, Process processID); - virtual void updateProcessedData(int objectsProcessed, wxLongLong dataProcessed); + virtual void initNewProcess(int objectsTotal, zen::Int64 dataTotal, Process processID); + virtual void updateProcessedData(int objectsProcessed, zen::Int64 dataProcessed); virtual void reportInfo(const Zstring& text); virtual void forceUiRefresh(); @@ -41,11 +41,11 @@ public: private: virtual void abortThisProcess(); - const ffs3::SwitchToGui& switchBatchToGui_; //functionality to change from batch mode to GUI mode + const zen::SwitchToGui& switchBatchToGui_; //functionality to change from batch mode to GUI mode bool exitWhenFinished; bool switchToGuiRequested; xmlAccess::OnError handleError_; - ffs3::ErrorLogging errorLog; //list of non-resolved errors and warnings + zen::ErrorLogging errorLog; //list of non-resolved errors and warnings Process currentProcess; int& returnValue; |