summaryrefslogtreecommitdiff
path: root/zen/recycler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/recycler.cpp')
-rw-r--r--zen/recycler.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/zen/recycler.cpp b/zen/recycler.cpp
index 16c2ac11..11b599d4 100644
--- a/zen/recycler.cpp
+++ b/zen/recycler.cpp
@@ -103,13 +103,13 @@ void zen::recycleOrDelete(const std::vector<Zstring>& filenames, const std::func
if (!moveToRecycler(&cNames[0], cNames.size(), recyclerCallback, &cbd))
{
if (cbd.exceptionInUserCallback)
- try
- {
- assert(notifyDeletionStatus);
- notifyDeletionStatus(Zstring()); //should throw again!!!
- assert(false);
- }
- catch (...) { throw; }
+ try
+ {
+ assert(notifyDeletionStatus);
+ notifyDeletionStatus(Zstring()); //should throw again!!!
+ assert(false);
+ }
+ catch (...) { throw; }
std::wstring filenameFmt = fmtFileName(filenames[0]); //probably not the correct file name for file lists larger than 1!
if (filenames.size() > 1)
bgstack15