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 e53b5f6a..5e5e56d4 100644
--- a/zen/recycler.cpp
+++ b/zen/recycler.cpp
@@ -157,7 +157,7 @@ bool zen::moveToRecycleBin(const Zstring& filename) //throw FileError
}
throw FileError(shortMsg + L"\n\n" + L"Glib Error Code " + numberTo<std::wstring>(error->code) + /* L", " +
- g_quark_to_string(error->domain) + */ L": " + utf8CvrtTo<std::wstring>(error->message));
+ g_quark_to_string(error->domain) + */ L": " + utfCvrtTo<std::wstring>(error->message));
}
#endif
return true;
bgstack15