summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/synchronization.h b/synchronization.h
index 0f1931cb..9ee0667a 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -80,6 +80,7 @@ public:
bool verifyCopiedFiles,
bool copyLockedFiles,
bool copyFilePermissions,
+ bool transactionalFileCopy,
ProcessCallback& handler);
//CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond per row!
@@ -91,6 +92,7 @@ private:
const bool verifyCopiedFiles_;
const bool copyLockedFiles_;
const bool copyFilePermissions_;
+ const bool transactionalFileCopy_;
//warnings
xmlAccess::OptionalDialogs& m_warnings;
bgstack15