summaryrefslogtreecommitdiff
path: root/algorithm.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /algorithm.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'algorithm.h')
-rw-r--r--algorithm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/algorithm.h b/algorithm.h
index 7b96358d..7280ed7d 100644
--- a/algorithm.h
+++ b/algorithm.h
@@ -56,7 +56,7 @@ public:
virtual Response reportError(const wxString& errorMessage) = 0;
//virtual void totalFilesToDelete(int objectsTotal) = 0; //informs about the total number of files to be deleted
- virtual void deletionSuccessful() = 0; //called for each file/folder that has been deleted
+ virtual void deletionSuccessful(size_t deletedItems) = 0; //called for each file/folder that has been deleted
};
void deleteFromGridAndHD(FolderComparison& folderCmp, //attention: rows will be physically deleted!
@@ -65,7 +65,7 @@ void deleteFromGridAndHD(FolderComparison& folderCmp, //a
const bool deleteOnBothSides,
const bool useRecycleBin,
const MainConfiguration& mainConfig,
- DeleteFilesHandler* statusHandler);
+ DeleteFilesHandler& statusHandler);
}
#endif // ALGORITHM_H_INCLUDED
bgstack15