summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Application.h b/Application.h
index 4e6a4ef2..c3f02efe 100644
--- a/Application.h
+++ b/Application.h
@@ -16,6 +16,7 @@
#include "FreeFileSync.h"
#include "ui/smallDialogs.h"
#include "library/misc.h"
+#include <wx/stopwatch.h>
class Application : public wxApp
{
@@ -37,6 +38,7 @@ private:
bool applicationRunsOnCommandLineWithoutWindows;
wxFFile logFile;
+ wxStopWatch totalTime;
CustomLocale programLanguage;
int returnValue;
@@ -53,7 +55,7 @@ public:
void initNewProcess(int objectsTotal, double dataTotal, int processID);
void updateProcessedData(int objectsProcessed, double dataProcessed);
int reportError(const wxString& text);
- void triggerUI_Refresh();
+ void triggerUI_Refresh(bool asyncProcessActive);
void noSynchronizationNeeded();
bgstack15