summaryrefslogtreecommitdiff
path: root/shared/recycler.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/recycler.h')
-rw-r--r--shared/recycler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/recycler.h b/shared/recycler.h
index b9fc9719..404d6f06 100644
--- a/shared/recycler.h
+++ b/shared/recycler.h
@@ -33,7 +33,7 @@ Linker flag:
bool recycleBinExists(); //test existence of Recycle Bin API on current system
//move a file or folder to Recycle Bin
-void moveToRecycleBin(const Zstring& fileToDelete); //throw (FileError)
+bool moveToRecycleBin(const Zstring& fileToDelete); //return "true" if file/dir was actually deleted; throw (FileError)
}
#endif // RECYCLER_H_INCLUDED
bgstack15