diff options
Diffstat (limited to 'WebCore/svg/SVGAltGlyphElement.cpp')
-rw-r--r-- | WebCore/svg/SVGAltGlyphElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/svg/SVGAltGlyphElement.cpp b/WebCore/svg/SVGAltGlyphElement.cpp index e88e9b9..d9da3f6 100644 --- a/WebCore/svg/SVGAltGlyphElement.cpp +++ b/WebCore/svg/SVGAltGlyphElement.cpp @@ -42,7 +42,7 @@ SVGAltGlyphElement::~SVGAltGlyphElement() { } -void SVGAltGlyphElement::setGlyphRef(const AtomicString& type, ExceptionCode& ec) +void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionCode& ec) { ec = NO_MODIFICATION_ALLOWED_ERR; } @@ -52,7 +52,7 @@ const AtomicString& SVGAltGlyphElement::glyphRef() const return getAttribute(SVGNames::glyphRefAttr); } -void SVGAltGlyphElement::setFormat(const AtomicString& type, ExceptionCode& ec) +void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionCode& ec) { ec = NO_MODIFICATION_ALLOWED_ERR; } |