| Index: compiled/subscription/UserDefinedSubscription.h |
| =================================================================== |
| --- a/compiled/subscription/UserDefinedSubscription.h |
| +++ b/compiled/subscription/UserDefinedSubscription.h |
| @@ -23,23 +23,23 @@ |
| class UserDefinedSubscription : public Subscription |
| { |
| private: |
| int mDefaults; |
| public: |
| explicit UserDefinedSubscription(const String& id); |
| - bool BINDINGS_EXPORTED IsDefaultFor(const Filter* filter) const; |
| - void BINDINGS_EXPORTED MakeDefaultFor(const Filter* filter); |
| + bool BINDINGS_EXPORTED IsDefaultFor(const Filter& filter) const; |
| + void BINDINGS_EXPORTED MakeDefaultFor(const Filter& filter); |
| bool BINDINGS_EXPORTED IsGeneric() const |
| { |
| return mDefaults == 0; |
| } |
| - void BINDINGS_EXPORTED InsertFilterAt(Filter* filter, unsigned pos); |
| + void BINDINGS_EXPORTED InsertFilterAt(Filter& filter, unsigned pos); |
| bool BINDINGS_EXPORTED RemoveFilterAt(unsigned pos); |
| OwnedString BINDINGS_EXPORTED Serialize() const; |
| }; |
| template<> |
| inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() |
| { |
| if (mType != Type::USERDEFINED) |