summaryrefslogtreecommitdiff
path: root/zen/recycler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/recycler.cpp')
-rw-r--r--zen/recycler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/zen/recycler.cpp b/zen/recycler.cpp
index 20e1a4af..a1353f0b 100644
--- a/zen/recycler.cpp
+++ b/zen/recycler.cpp
@@ -95,7 +95,7 @@ void zen::recycleOrDelete(const std::vector<Zstring>& filenames, CallbackRecycli
replaceCpy(_("Cannot load file %x."), L"%x", fmtFileName(getDllName())));
std::vector<const wchar_t*> cNames;
- for (auto it = filenames.begin(); it != filenames.end(); ++it) //caution to not create temporary strings here!!
+ for (auto it = filenames.begin(); it != filenames.end(); ++it) //CAUTION: to not create temporary strings here!!
cNames.push_back(it->c_str());
CallbackData cbd(callback);
@@ -114,9 +114,9 @@ void zen::recycleOrDelete(const std::vector<Zstring>& filenames, CallbackRecycli
else //regular recycle bin usage: available since XP
{
Zstring filenamesDoubleNull;
- for (auto it = filenames.begin(); it != filenames.end(); ++it)
+ for (const Zstring& filename : filenames)
{
- filenamesDoubleNull += *it;
+ filenamesDoubleNull += filename;
filenamesDoubleNull += L'\0';
}
bgstack15