diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:05:53 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:05:53 +0200 |
commit | 618dfb51d93898632830f1b87443d3f748780871 (patch) | |
tree | bac520a2e261154f8d35b0cb8aa345f5ab373811 /library/processXml.h | |
parent | 3.4 (diff) | |
download | FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2 FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip |
3.5
Diffstat (limited to 'library/processXml.h')
-rw-r--r-- | library/processXml.h | 10 |
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; //--------------------------------------------------------------------- |