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 7280ed7d..c1acec9e 100644
--- a/algorithm.h
+++ b/algorithm.h
@@ -14,6 +14,8 @@ namespace ffs3
{
class BaseFilter;
+ wxString extractJobName(const wxString& configFilename);
+
void swapGrids(const MainConfiguration& config, FolderComparison& folderCmp);
struct DeterminationProblem //callback
@@ -64,7 +66,6 @@ void deleteFromGridAndHD(FolderComparison& folderCmp, //a
std::vector<FileSystemObject*>& rowsToDeleteOnRight, //all pointers need to be bound!
const bool deleteOnBothSides,
const bool useRecycleBin,
- const MainConfiguration& mainConfig,
DeleteFilesHandler& statusHandler);
}
bgstack15