summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgellipsenode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source/svgreader/svgellipsenode.cxx')
-rw-r--r--svgio/source/svgreader/svgellipsenode.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svgio/source/svgreader/svgellipsenode.cxx b/svgio/source/svgreader/svgellipsenode.cxx
index 4e83e010d3c7..7fd431aeb0f6 100644
--- a/svgio/source/svgreader/svgellipsenode.cxx
+++ b/svgio/source/svgreader/svgellipsenode.cxx
@@ -131,8 +131,8 @@ namespace svgio::svgreader
if(!(pStyle && getRx().isSet() && getRy().isSet()))
return;
- const double fRx(getRx().solve(*this, xcoordinate));
- const double fRy(getRy().solve(*this, ycoordinate));
+ const double fRx(getRx().solve(*this, NumberType::xcoordinate));
+ const double fRy(getRy().solve(*this, NumberType::ycoordinate));
if(fRx <= 0.0 || fRy <= 0.0)
return;
@@ -140,8 +140,8 @@ namespace svgio::svgreader
const basegfx::B2DPolygon aPath(
basegfx::utils::createPolygonFromEllipse(
basegfx::B2DPoint(
- getCx().isSet() ? getCx().solve(*this, xcoordinate) : 0.0,
- getCy().isSet() ? getCy().solve(*this, ycoordinate) : 0.0),
+ getCx().isSet() ? getCx().solve(*this, NumberType::xcoordinate) : 0.0,
+ getCy().isSet() ? getCy().solve(*this, NumberType::ycoordinate) : 0.0),
fRx, fRy));
drawinglayer::primitive2d::Primitive2DContainer aNewTarget;