From f570e2f2685aa43aa518c2f8578391c1847cddbe Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:04:59 +0200 Subject: 3.3 --- library/processXml.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'library/processXml.h') 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; -- cgit