summaryrefslogtreecommitdiff
path: root/library/processXml.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:04:59 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:04:59 +0200
commitf570e2f2685aa43aa518c2f8578391c1847cddbe (patch)
treeb9376b3a7e807c5e0c4cf3d5615c14034d9675d6 /library/processXml.h
parent3.2 (diff)
downloadFreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.gz
FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.bz2
FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.zip
3.3
Diffstat (limited to 'library/processXml.h')
-rw-r--r--library/processXml.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/library/processXml.h b/library/processXml.h
index 80db71a3..9cb920d9 100644
--- a/library/processXml.h
+++ b/library/processXml.h
@@ -109,12 +109,15 @@ struct XmlGlobalSettings
programLanguage(retrieveSystemLanguage()),
ignoreOneHourDiff(false),
copyLockedFiles(true),
- lastUpdateCheck(0) {}
+ detectRenameThreshold(1024 *1024),
+ lastUpdateCheck(0)
+ {}
int programLanguage;
- bool ignoreOneHourDiff; //ignore +/- 1 hour due to DST change
- bool copyLockedFiles; //VSS usage
- long lastUpdateCheck; //time of last update check
+ bool ignoreOneHourDiff; //ignore +/- 1 hour due to DST change
+ bool copyLockedFiles; //VSS usage
+ unsigned int detectRenameThreshold; //minimum size (in bytes) for files to be considered for rename-detection
+ long lastUpdateCheck; //time of last update check
OptionalDialogs optDialogs;
bgstack15