diff options
Diffstat (limited to 'ksvg/dom/SVGMaskElement.cc')
-rw-r--r-- | ksvg/dom/SVGMaskElement.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ksvg/dom/SVGMaskElement.cc b/ksvg/dom/SVGMaskElement.cc index 0ec23f0a..c4513adc 100644 --- a/ksvg/dom/SVGMaskElement.cc +++ b/ksvg/dom/SVGMaskElement.cc @@ -70,16 +70,16 @@ SVGMaskElement::~SVGMaskElement() impl->deref(); } -SVGAnimatedEnumeration SVGMaskElement::tqmaskUnits() const +SVGAnimatedEnumeration SVGMaskElement::maskUnits() const { if(!impl) return SVGAnimatedEnumeration(0); - return SVGAnimatedEnumeration(impl->tqmaskUnits()); + return SVGAnimatedEnumeration(impl->maskUnits()); } -SVGAnimatedEnumeration SVGMaskElement::tqmaskContentUnits() const +SVGAnimatedEnumeration SVGMaskElement::maskContentUnits() const { if(!impl) return SVGAnimatedEnumeration(0); - return SVGAnimatedEnumeration(impl->tqmaskContentUnits()); + return SVGAnimatedEnumeration(impl->maskContentUnits()); } SVGAnimatedLength SVGMaskElement::x() const |