diff options
Diffstat (limited to 'WebCore/svg/SVGGlyphElement.cpp')
-rw-r--r-- | WebCore/svg/SVGGlyphElement.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WebCore/svg/SVGGlyphElement.cpp b/WebCore/svg/SVGGlyphElement.cpp index d5b7531..054db11 100644 --- a/WebCore/svg/SVGGlyphElement.cpp +++ b/WebCore/svg/SVGGlyphElement.cpp @@ -29,7 +29,7 @@ #include "SVGFontElement.h" #include "SVGFontFaceElement.h" #include "SVGNames.h" -#include "SVGParserUtilities.h" +#include "SVGPathBuilder.h" #include "SimpleFontData.h" #include "XMLNames.h" @@ -102,7 +102,9 @@ static inline SVGGlyphIdentifier::Orientation parseOrientation(const AtomicStrin static inline Path parsePathData(const AtomicString& value) { Path result; - pathFromSVGData(result, value); + SVGPathBuilder builder(result); + // FIXME: We should analyse the returned value. + builder.build(value); return result; } |