summaryrefslogtreecommitdiff
path: root/library/process_xml.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /library/process_xml.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'library/process_xml.h')
-rw-r--r--library/process_xml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/process_xml.h b/library/process_xml.h
index 22465739..24a2fe9b 100644
--- a/library/process_xml.h
+++ b/library/process_xml.h
@@ -117,14 +117,12 @@ struct XmlGlobalSettings
//Shared (GUI/BATCH) settings
XmlGlobalSettings() :
programLanguage(retrieveSystemLanguage()),
- ignoreOneHourDiff(false),
copyLockedFiles(true),
copyFilePermissions(false),
fileTimeTolerance(2), //default 2s: FAT vs NTFS
verifyFileCopy(false) {}
int programLanguage;
- bool ignoreOneHourDiff; //ignore +/- 1 hour due to DST change
bool copyLockedFiles; //VSS usage
bool copyFilePermissions;
@@ -157,6 +155,7 @@ struct XmlGlobalSettings
#endif
showFileIconsLeft(true),
showFileIconsRight(true),
+ addFolderPairCountMax(5),
lastUpdateCheck(0)
{
//default external apps will be translated "on the fly"!!!
@@ -204,6 +203,7 @@ struct XmlGlobalSettings
bool showFileIconsLeft;
bool showFileIconsRight;
+ size_t addFolderPairCountMax;
long lastUpdateCheck; //time of last update check
} gui;
bgstack15