summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/XMLImageMapContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/draw/XMLImageMapContext.cxx')
-rw-r--r--xmloff/source/draw/XMLImageMapContext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/XMLImageMapContext.cxx b/xmloff/source/draw/XMLImageMapContext.cxx
index 490a5238e9b2..291befdaabe5 100644
--- a/xmloff/source/draw/XMLImageMapContext.cxx
+++ b/xmloff/source/draw/XMLImageMapContext.cxx
@@ -438,12 +438,12 @@ void XMLImageMapPolygonContext::Prepare(Reference<XPropertySet> & rPropertySet)
// get polygon sequence
basegfx::B2DPolygon aPolygon;
- if(basegfx::tools::importFromSvgPoints(aPolygon, sPointsString))
+ if(basegfx::utils::importFromSvgPoints(aPolygon, sPointsString))
{
if(aPolygon.count())
{
css::drawing::PointSequence aPointSequence;
- basegfx::tools::B2DPolygonToUnoPointSequence(aPolygon, aPointSequence);
+ basegfx::utils::B2DPolygonToUnoPointSequence(aPolygon, aPointSequence);
rPropertySet->setPropertyValue("Polygon", Any(aPointSequence));
}
}