summaryrefslogtreecommitdiff
path: root/zen/recycler.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/recycler.h')
-rw-r--r--zen/recycler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/recycler.h b/zen/recycler.h
index 2319f7b6..5112444d 100644
--- a/zen/recycler.h
+++ b/zen/recycler.h
@@ -35,7 +35,7 @@ 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!
+//Win XP: can take a long time if recycle bin is full and drive is slow!!! => buffer result!
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
bgstack15