summaryrefslogtreecommitdiff
path: root/library/processXml.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/processXml.h')
-rw-r--r--library/processXml.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/library/processXml.h b/library/processXml.h
index abf5bfc6..e359e7b0 100644
--- a/library/processXml.h
+++ b/library/processXml.h
@@ -5,6 +5,8 @@
#include "tinyxml/tinyxml.h"
#include <wx/intl.h>
+using namespace FreeFileSync;
+
namespace xmlAccess
{
@@ -45,8 +47,18 @@ namespace xmlAccess
{
struct _Global
{
- _Global() : programLanguage(wxLocale::GetSystemLanguage()) {}
+ _Global() :
+ programLanguage(wxLocale::GetSystemLanguage()),
+#ifdef FFS_WIN
+ dstCheckActive(true),
+#endif
+ folderDependCheckActive(true) {}
+
int programLanguage;
+#ifdef FFS_WIN
+ bool dstCheckActive;
+#endif
+ bool folderDependCheckActive;
} global;
struct _Gui
bgstack15