summaryrefslogtreecommitdiff
path: root/library/processXml.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
commit618dfb51d93898632830f1b87443d3f748780871 (patch)
treebac520a2e261154f8d35b0cb8aa345f5ab373811 /library/processXml.h
parent3.4 (diff)
downloadFreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip
3.5
Diffstat (limited to 'library/processXml.h')
-rw-r--r--library/processXml.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/processXml.h b/library/processXml.h
index ad8465ff..13282de9 100644
--- a/library/processXml.h
+++ b/library/processXml.h
@@ -8,7 +8,6 @@
#define PROCESSXML_H_INCLUDED
#include "../structures.h"
-#include <wx/intl.h>
namespace xmlAccess
{
@@ -116,14 +115,12 @@ struct XmlGlobalSettings
XmlGlobalSettings() :
programLanguage(retrieveSystemLanguage()),
ignoreOneHourDiff(false),
- copyLockedFiles(true),
- lastUpdateCheck(0)
+ copyLockedFiles(true)
{}
int programLanguage;
bool ignoreOneHourDiff; //ignore +/- 1 hour due to DST change
bool copyLockedFiles; //VSS usage
- long lastUpdateCheck; //time of last update check
OptionalDialogs optDialogs;
@@ -150,7 +147,8 @@ struct XmlGlobalSettings
textSearchRespectCase(true),
#endif
showFileIconsLeft(true),
- showFileIconsRight(true)
+ showFileIconsRight(true),
+ lastUpdateCheck(0)
{
//default external apps will be translated "on the fly"!!!
#ifdef FFS_WIN
@@ -194,6 +192,8 @@ struct XmlGlobalSettings
bool textSearchRespectCase;
bool showFileIconsLeft;
bool showFileIconsRight;
+
+ long lastUpdateCheck; //time of last update check
} gui;
//---------------------------------------------------------------------
bgstack15