summaryrefslogtreecommitdiff
path: root/library/process_xml.h
diff options
context:
space:
mode:
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