| Index: src/plugin/PluginUtil.cpp |
| =================================================================== |
| --- a/src/plugin/PluginUtil.cpp |
| +++ b/src/plugin/PluginUtil.cpp |
| @@ -52,13 +52,4 @@ |
| CString domain = url.Tokenize(L"/", pos); |
| domain.MakeLower(); |
| return domain; |
| -} |
| - |
| -void ReplaceString(std::wstring& input, const std::wstring placeholder, const std::wstring replacement) |
| -{ |
| - size_t replaceStart = input.find(placeholder); |
| - if (replaceStart != std::string::npos) |
| - { |
| - input.replace(replaceStart, placeholder.length(), replacement); |
| - } |
| } |