| Index: compiled/filter/ActiveFilter.cpp | 
| =================================================================== | 
| --- a/compiled/filter/ActiveFilter.cpp | 
| +++ b/compiled/filter/ActiveFilter.cpp | 
| @@ -21,18 +21,18 @@ | 
| #include "../StringScanner.h" | 
|  | 
| namespace | 
| { | 
| const DependentString DEFAULT_DOMAIN(u""_str); | 
| } | 
|  | 
| ActiveFilter::ActiveFilter(Type type, const String& text, bool ignoreTrailingDot) | 
| -    : Filter(type, text), mDisabled(false), mHitCount(0), mLastHit(0), | 
| -      mIgnoreTrailingDot(ignoreTrailingDot) | 
| +    : Filter(type, text), mIgnoreTrailingDot(ignoreTrailingDot), | 
| +      mDisabled(false), mHitCount(0), mLastHit(0) | 
| { | 
| } | 
|  | 
| ActiveFilter::DomainMap* ActiveFilter::GetDomains() const | 
| { | 
| return mDomains.get(); | 
| } | 
|  | 
|  |