summaryrefslogtreecommitdiff
path: root/comparison.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:03 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:03 +0200
commit420fb6c9b3427f65cfe24411944ee46b58cfcfb4 (patch)
tree58269ba5ee7a22d2df004f03b100cc234b8c3f14 /comparison.h
parent1.16 (diff)
downloadFreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.gz
FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.bz2
FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.zip
1.17
Diffstat (limited to 'comparison.h')
-rw-r--r--comparison.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/comparison.h b/comparison.h
index 8e6bb9d3..204ff7ec 100644
--- a/comparison.h
+++ b/comparison.h
@@ -13,7 +13,7 @@ namespace FreeFileSync
{
public:
CompareProcess(const bool traverseSymLinks,
- const bool handleDstOnFat32Drives,
+ const unsigned fileTimeTol,
bool& warningDependentFolders,
StatusHandler* handler);
@@ -34,8 +34,8 @@ namespace FreeFileSync
//buffer accesses to the same directories; useful when multiple folder pairs are used
DirectoryDescrBuffer* descriptionBuffer;
- const bool traverseSymbolicLinks;
- const bool handleDstOnFat32;
+ const bool traverseDirectorySymlinks;
+ const unsigned fileTimeTolerance; //max allowed file time deviation
bool& m_warningDependentFolders;
StatusHandler* statusUpdater;
bgstack15