summaryrefslogtreecommitdiff
path: root/zen/recycler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/recycler.cpp')
-rw-r--r--zen/recycler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/recycler.cpp b/zen/recycler.cpp
index 4d6ea1fd..28b2d6c1 100644
--- a/zen/recycler.cpp
+++ b/zen/recycler.cpp
@@ -34,7 +34,7 @@ bool zen::recycleOrDeleteIfExists(const Zstring& itemPath) //throw FileError
//implement same behavior as in Windows: if recycler is not existing, delete permanently
if (error && error->code == G_IO_ERROR_NOT_SUPPORTED)
{
- if (*type == ItemType::FOLDER)
+ if (*type == ItemType::folder)
removeDirectoryPlainRecursion(itemPath); //throw FileError
else
removeFilePlain(itemPath); //throw FileError
bgstack15