summaryrefslogtreecommitdiff
path: root/zen/recycler.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:54:34 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:54:34 +0200
commit96e20826f358a32e38c3f052243375982543c05b (patch)
tree691efa86265fbb35cc60a1ce816423bb2a41f17b /zen/recycler.h
parent6.13 (diff)
downloadFreeFileSync-96e20826f358a32e38c3f052243375982543c05b.tar.gz
FreeFileSync-96e20826f358a32e38c3f052243375982543c05b.tar.bz2
FreeFileSync-96e20826f358a32e38c3f052243375982543c05b.zip
6.14
Diffstat (limited to 'zen/recycler.h')
-rw-r--r--zen/recycler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/recycler.h b/zen/recycler.h
index d86fbb12..2319f7b6 100644
--- a/zen/recycler.h
+++ b/zen/recycler.h
@@ -35,8 +35,8 @@ bool recycleOrDelete(const Zstring& itempath); //throw FileError, return "true"
#ifdef ZEN_WIN
-//can take a long time if recycle bin is full and drive is slow!!! => buffer volume ids!
-bool recycleBinExists(const Zstring& pathName, const std::function<void ()>& onUpdateGui); //throw FileError
+//can take a long time if recycle bin is full and drive is slow!!! => buffer!
+bool recycleBinExists(const Zstring& dirpath, const std::function<void ()>& onUpdateGui); //throw FileError
void recycleOrDelete(const std::vector<Zstring>& filepaths, //throw FileError, return "true" if file/dir was actually deleted
const std::function<void (const Zstring& currentItem)>& notifyDeletionStatus); //optional; currentItem may be empty
bgstack15