Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginSettings.cpp

Issue 11013110: Cleanup (Closed)
Patch Set: Refactoring CallAdblockPlusEngine Created July 24, 2013, 9:09 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
}
}

Powered by Google App Engine
This is Rietveld