Index: src/plugin/PluginUtil.h |
=================================================================== |
--- a/src/plugin/PluginUtil.h |
+++ b/src/plugin/PluginUtil.h |
@@ -33,6 +33,7 @@ |
/** |
* Return a lower-case version of the argument string. |
- * Current version uses 'CString::MakeLower()' to preserve legacy behavior during refactoring. |
+ * Collates according to the current locale. |
sergei
2015/12/16 10:32:45
That seems to be correct choice. We can also creat
Eric
2015/12/16 13:53:26
For my purposes in this change set, it's the choic
|
+ * May not lower-case entire string if it contains embedded null characters. |
sergei
2015/12/16 10:32:45
I know that it can theoretically happen, especiall
Eric
2015/12/16 13:53:26
I don't think we ever have a situation where we'll
|
*/ |
std::wstring ToLowerString(const std::wstring& s); |