summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:47:21 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:47:21 +0200
commitca64896d49b70fc0ffec711a079167c972fe635e (patch)
tree0059c36336378c886b750860aa5343b847c3609a /Application.h
parent1.3 (diff)
downloadFreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.tar.gz
FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.tar.bz2
FreeFileSync-ca64896d49b70fc0ffec711a079167c972fe635e.zip
1.4
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h9
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;
};
bgstack15