| Index: src/plugin/PluginSettings.cpp |
| =================================================================== |
| --- a/src/plugin/PluginSettings.cpp |
| +++ b/src/plugin/PluginSettings.cpp |
| @@ -22,7 +22,7 @@ |
| { |
| std::wstring CreateDomainWhitelistingFilter(const CString domain) |
| { |
| - return L"@@||" + domain + L"^$document"; |
| + return std::wstring(L"@@||") + domain.GetString() + std::wstring(L"^$document"); |
|
Felix Dahlke
2013/07/25 13:52:33
What is this change for? It worked before, didn't
Oleksandr
2013/07/26 14:20:04
This is just to remove the warning C4927 here. htt
|
| } |
| } |