diff options
Diffstat (limited to 'WebCore/svg/SVGFEComponentTransferElement.h')
-rw-r--r-- | WebCore/svg/SVGFEComponentTransferElement.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/WebCore/svg/SVGFEComponentTransferElement.h b/WebCore/svg/SVGFEComponentTransferElement.h index e80ea94..21c95d2 100644 --- a/WebCore/svg/SVGFEComponentTransferElement.h +++ b/WebCore/svg/SVGFEComponentTransferElement.h @@ -23,7 +23,7 @@ #ifndef SVGFEComponentTransferElement_h #define SVGFEComponentTransferElement_h -#if ENABLE(SVG) && ENABLE(SVG_FILTERS) +#if ENABLE(SVG) && ENABLE(FILTERS) #include "SVGFilterPrimitiveStandardAttributes.h" #include "FEComponentTransfer.h" @@ -35,13 +35,10 @@ namespace WebCore { virtual ~SVGFEComponentTransferElement(); virtual void parseMappedAttribute(MappedAttribute*); - virtual SVGFilterEffect* filterEffect(SVGResourceFilter*) const; - bool build(FilterBuilder*); + virtual bool build(SVGResourceFilter*); private: ANIMATED_PROPERTY_DECLARATIONS(SVGFEComponentTransferElement, SVGNames::feComponentTransferTagString, SVGNames::inAttrString, String, In1, in1) - - mutable RefPtr<FEComponentTransfer> m_filterEffect; }; } // namespace WebCore |