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