diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:47:21 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:47:21 +0200 |
commit | ca64896d49b70fc0ffec711a079167c972fe635e (patch) | |
tree | 0059c36336378c886b750860aa5343b847c3609a /Application.h | |
parent | 1.3 (diff) | |
download | FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.tar.gz FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.tar.bz2 FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.zip |
1.4
Diffstat (limited to 'Application.h')
-rw-r--r-- | Application.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Application.h b/Application.h index bcf49d00..8c9283ed 100644 --- a/Application.h +++ b/Application.h @@ -89,13 +89,12 @@ public: CommandLineStatusUpdater(Application* application, bool skipErr, bool silent); ~CommandLineStatusUpdater(); - void updateStatus(const wxString& text); - void updateProgressIndicator(double number); + void updateStatusText(const wxString& text); + void initNewProcess(int objectsTotal, double dataTotal, int processID); + void updateProcessedData(int objectsProcessed, double dataProcessed); int reportError(const wxString& text); - void triggerUI_Refresh(); - void switchToSyncProcess(double number); void updateFinalStatus(const wxString& text); private: @@ -104,8 +103,8 @@ private: bool skipErrors; bool silentMode; - bool switchedToSynchronisation; wxArrayString unhandledErrors; //list of non-resolved errors + int currentProcess; }; |