From ca64896d49b70fc0ffec711a079167c972fe635e Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 16:47:21 +0200 Subject: 1.4 --- Application.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'Application.h') 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; }; -- cgit