| Index: svg/SVGGlyphElement.cpp
|
| ===================================================================
|
| --- svg/SVGGlyphElement.cpp (revision 52205)
|
| +++ svg/SVGGlyphElement.cpp (working copy)
|
| @@ -49,7 +49,7 @@
|
| void SVGGlyphElement::invalidateGlyphCache()
|
| {
|
| Node* fontNode = parentNode();
|
| - if (fontNode && fontNode->hasTagName(fontTag)) {
|
| + if (fontNode && fontNode->hasTagName(SVGNames::fontTag)) {
|
| if (SVGFontElement* element = static_cast<SVGFontElement*>(fontNode))
|
| element->invalidateGlyphCache();
|
| }
|
| @@ -167,7 +167,7 @@
|
| identifier.orientation = parseOrientation(getAttribute(orientationAttr));
|
| identifier.arabicForm = parseArabicForm(getAttribute(arabic_formAttr));
|
|
|
| - String language = getAttribute(langAttr);
|
| + String language = getAttribute(SVGNames::langAttr);
|
| if (!language.isEmpty())
|
| identifier.languages = parseDelimitedString(language, ',');
|
|
|
|
|