summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:51:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:51:28 +0200
commit8f27768c1c35f09152b35caeab20e705086fd03f (patch)
tree1b1c8fa36bb2b7fc60e2be551a454de239bb5c7f /Application.h
parent1.7 (diff)
downloadFreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.tar.gz
FreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.tar.bz2
FreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.zip
1.8
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