diff options
Diffstat (limited to 'svgio/source')
-rw-r--r-- | svgio/source/svgreader/svgimagenode.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgimagenode.cxx b/svgio/source/svgreader/svgimagenode.cxx index da26a83e2b6b..47e70177edf4 100644 --- a/svgio/source/svgreader/svgimagenode.cxx +++ b/svgio/source/svgreader/svgimagenode.cxx @@ -166,13 +166,13 @@ namespace svgio { if(GraphicType::Bitmap == rGraphic.GetType()) { - if(rGraphic.getSvgData().get()) + if(rGraphic.getVectorGraphicData().get()) { // embedded Svg - rEmbedded = rGraphic.getSvgData()->getPrimitive2DSequence(); + rEmbedded = rGraphic.getVectorGraphicData()->getPrimitive2DSequence(); // fill aViewBox - rViewBox = rGraphic.getSvgData()->getRange(); + rViewBox = rGraphic.getVectorGraphicData()->getRange(); } else { |