summaryrefslogtreecommitdiff
path: root/algorithm.h
diff options
context:
space:
mode:
Diffstat (limited to 'algorithm.h')
-rw-r--r--algorithm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/algorithm.h b/algorithm.h
index 9cf1e8ad..f05eb95d 100644
--- a/algorithm.h
+++ b/algorithm.h
@@ -32,10 +32,11 @@ namespace FreeFileSync
const std::set<int>& rowsToDeleteOnRight,
const bool deleteOnBothSides,
const bool useRecycleBin,
+ const SyncConfiguration& syncConfig,
ErrorHandler* errorHandler);
- wxString utcTimeToLocalString(const wxLongLong& utcTime);
+ wxString utcTimeToLocalString(const wxLongLong& utcTime, const Zstring& filename);
//enhanced binary search template: returns an iterator
template <class ForwardIterator, class T>
bgstack15