summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgvisitor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source/svgreader/svgvisitor.cxx')
-rw-r--r--svgio/source/svgreader/svgvisitor.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgvisitor.cxx b/svgio/source/svgreader/svgvisitor.cxx
index 203a9df7a020..ba4baaa2abfa 100644
--- a/svgio/source/svgreader/svgvisitor.cxx
+++ b/svgio/source/svgreader/svgvisitor.cxx
@@ -29,7 +29,7 @@ void SvgDrawVisitor::visit(svgio::svgreader::SvgNode const& rNode)
{
switch (rNode.getType())
{
- case svgio::svgreader::SVGTokenSvg:
+ case svgio::svgreader::SVGToken::Svg:
{
auto const& rSvgNode = static_cast<svgio::svgreader::SvgSvgNode const&>(rNode);
@@ -38,7 +38,7 @@ void SvgDrawVisitor::visit(svgio::svgreader::SvgNode const& rNode)
static_cast<gfx::DrawRoot*>(mpCurrent.get())->maRectangle = aRange;
}
break;
- case svgio::svgreader::SVGTokenRect:
+ case svgio::svgreader::SVGToken::Rect:
{
auto const& rRectNode = static_cast<svgio::svgreader::SvgRectNode const&>(rNode);
@@ -104,7 +104,7 @@ void SvgDrawVisitor::visit(svgio::svgreader::SvgNode const& rNode)
mpCurrent->maChildren.push_back(pRectangle);
}
break;
- case svgio::svgreader::SVGTokenPath:
+ case svgio::svgreader::SVGToken::Path:
{
auto const& rPathNode = static_cast<svgio::svgreader::SvgPathNode const&>(rNode);