summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/base/algorithm.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-01-15 08:16:08 -0500
committerB Stack <bgstack15@gmail.com>2019-01-15 08:16:08 -0500
commit7c855d11f23dc03d64a0099473a95402f3175280 (patch)
tree41b8a3085df4de883f2993773b138f1436e041a4 /FreeFileSync/Source/base/algorithm.h
parentMerge branch '10.7' into 'master' (diff)
downloadFreeFileSync-7c855d11f23dc03d64a0099473a95402f3175280.tar.gz
FreeFileSync-7c855d11f23dc03d64a0099473a95402f3175280.tar.bz2
FreeFileSync-7c855d11f23dc03d64a0099473a95402f3175280.zip
10.8
Diffstat (limited to 'FreeFileSync/Source/base/algorithm.h')
-rwxr-xr-xFreeFileSync/Source/base/algorithm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeFileSync/Source/base/algorithm.h b/FreeFileSync/Source/base/algorithm.h
index f7b2cc15..a58e2b50 100755
--- a/FreeFileSync/Source/base/algorithm.h
+++ b/FreeFileSync/Source/base/algorithm.h
@@ -16,7 +16,7 @@
namespace fff
{
-void swapGrids(const MainConfiguration& config, FolderComparison& folderCmp); //throw FileError
+void swapGrids(const MainConfiguration& mainCfg, FolderComparison& folderCmp); //throw FileError
std::vector<DirectionConfig> extractDirectionCfg(const MainConfiguration& mainCfg);
@@ -24,7 +24,7 @@ void redetermineSyncDirection(const DirectionConfig& directConfig, //throw FileE
BaseFolderPair& baseFolder,
const std::function<void(const std::wstring& msg)>& notifyStatus);
-void redetermineSyncDirection(const MainConfiguration& mainCfg, //throw FileError
+void redetermineSyncDirection(const std::vector<DirectionConfig>& directCfgs, //throw FileError
FolderComparison& folderCmp,
const std::function<void(const std::wstring& msg)>& notifyStatus);
bgstack15