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

Unified Diff: compiled/filter/ActiveFilter.h

Issue 29532626: Issue 5603 - Support references in parameters of exported functions (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created Aug. 31, 2017, 12:36 p.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: compiled/filter/ActiveFilter.h
===================================================================
--- a/compiled/filter/ActiveFilter.h
+++ b/compiled/filter/ActiveFilter.h
@@ -32,17 +32,17 @@
}\
void BINDINGS_EXPORTED setter(type value)\
{\
if (name != value)\
{\
name = value;\
if (FilterNotifier::Topic::topic != FilterNotifier::Topic::NONE)\
{\
- FilterNotifier::FilterChange(FilterNotifier::Topic::topic, this);\
+ FilterNotifier::FilterChange(FilterNotifier::Topic::topic, *this);\
}\
}\
}
class ActiveFilter : public Filter
{
protected:
typedef StringMap<bool> DomainMap;

Powered by Google App Engine
This is Rietveld