summaryrefslogtreecommitdiff
path: root/library/processXml.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
commit222024f07e505617aec93dc4837be2be27d18856 (patch)
treec40f400baa6cf1d047205359f80c2b8f74a2b507 /library/processXml.h
parent1.12 (diff)
downloadFreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.gz
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.bz2
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.zip
1.13
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