summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:50:45 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:50:45 +0200
commiteca5f1c8831fd0776e57a174362b0515104174c2 (patch)
tree5cba4e6c74d1f5c78018eff1b09b1973c5b7604f /Application.h
parent1.6 (diff)
downloadFreeFileSync-eca5f1c8831fd0776e57a174362b0515104174c2.tar.gz
FreeFileSync-eca5f1c8831fd0776e57a174362b0515104174c2.tar.bz2
FreeFileSync-eca5f1c8831fd0776e57a174362b0515104174c2.zip
1.7
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Application.h b/Application.h
index 56298898..4e6a4ef2 100644
--- a/Application.h
+++ b/Application.h
@@ -12,7 +12,7 @@
#include <wx/app.h>
#include <wx/cmdline.h>
-#include <fstream>
+#include <wx/ffile.h>
#include "FreeFileSync.h"
#include "ui/smallDialogs.h"
#include "library/misc.h"
@@ -36,8 +36,7 @@ private:
void parseCommandline();
bool applicationRunsOnCommandLineWithoutWindows;
-
- ofstream logFile;
+ wxFFile logFile;
CustomLocale programLanguage;
int returnValue;
@@ -56,7 +55,7 @@ public:
int reportError(const wxString& text);
void triggerUI_Refresh();
- void updateFinalStatus(const wxString& text);
+ void noSynchronizationNeeded();
private:
Application* app;
@@ -66,6 +65,7 @@ private:
wxArrayString unhandledErrors; //list of non-resolved errors
int currentProcess;
+ bool synchronizationNeeded;
};
bgstack15