| Index: src/plugin/PluginUtil.h |
| =================================================================== |
| --- a/src/plugin/PluginUtil.h |
| +++ b/src/plugin/PluginUtil.h |
| @@ -30,3 +30,9 @@ |
| { |
| return 0 == s.compare(0, N - 1, beginning); |
| } |
| + |
| +/** |
| + * Return a lower-case version of the argument string. |
| + * Current version uses 'CString::MakeLower()' to preserve legacy behavior during refactoring. |
|
sergei
2015/12/14 12:17:55
I'm not sure about the latter line. It might be be
Eric
2015/12/14 12:40:23
It's here not to explain the code, but to explain
sergei
2015/12/14 13:28:02
Acknowledged.
|
| + */ |
| +std::wstring ToLowerString(const std::wstring& s); |