Index: src/plugin/PluginUtil.cpp |
=================================================================== |
--- a/src/plugin/PluginUtil.cpp |
+++ b/src/plugin/PluginUtil.cpp |
@@ -52,3 +52,9 @@ |
} |
return std::wstring(locationUrl, locationUrl.Length()); |
} |
+ |
+std::wstring ToLowerString(const std::wstring& s) |
+{ |
+ return ToWstring(ToCString(s).MakeLower()); |
+} |
+ |