summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:56:34 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:56:34 +0200
commit9084fa27f0f43cfa31dbc3a7ef87e2600c2dc3ca (patch)
tree61e2edc315a164d6fa3940b7de4b14dda0a9838c /synchronization.h
parent1.15 (diff)
downloadFreeFileSync-9084fa27f0f43cfa31dbc3a7ef87e2600c2dc3ca.tar.gz
FreeFileSync-9084fa27f0f43cfa31dbc3a7ef87e2600c2dc3ca.tar.bz2
FreeFileSync-9084fa27f0f43cfa31dbc3a7ef87e2600c2dc3ca.zip
1.16
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/synchronization.h b/synchronization.h
index 7e80dc7b..e7d6f474 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -20,7 +20,9 @@ namespace FreeFileSync
class SyncProcess
{
public:
- SyncProcess(bool useRecycler, bool lineBreakOnMessages, StatusHandler* handler);
+ SyncProcess(const bool useRecycler,
+ bool& warningSignificantDifference,
+ StatusHandler* handler);
void startSynchronizationProcess(FileCompareResult& grid, const SyncConfiguration& config) throw(AbortThisProcess);
@@ -29,6 +31,7 @@ namespace FreeFileSync
bool synchronizeFolder(const FileCompareLine& cmpLine, const SyncConfiguration& config); //false if nothing had to be done
const bool useRecycleBin;
+ bool& m_warningSignificantDifference;
StatusHandler* statusUpdater;
//preload status texts
bgstack15