summaryrefslogtreecommitdiffstats
path: root/svx/source/customshapes
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@novell.com>2011-06-21 09:11:28 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-06-22 12:55:16 +0200
commitb036162d609b01e7b27e0eafc09cbd0192d95200 (patch)
tree6fe364b210c7a87fa753c101824594084a026be4 /svx/source/customshapes
parentadapt for new api (diff)
downloadcore-b036162d609b01e7b27e0eafc09cbd0192d95200.tar.gz
core-b036162d609b01e7b27e0eafc09cbd0192d95200.zip
Teach LibreOffice proper svg:d support
Diffstat (limited to 'svx/source/customshapes')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeEngine.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
index 53cc25b61fb9..923a989064f1 100644
--- a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
@@ -49,9 +49,9 @@
#include <svx/svdpage.hxx>
#include <svx/svdmodel.hxx>
#include "svx/svditer.hxx"
-#include "unopolyhelper.hxx"
#include <uno/mapping.hxx>
#include <basegfx/polygon/b2dpolypolygontools.hxx>
+#include <basegfx/tools/unotools.hxx>
#include <com/sun/star/document/XActionLockable.hpp>
// ---------------------------
@@ -446,7 +446,8 @@ com::sun::star::drawing::PolyPolygonBezierCoords SAL_CALL EnhancedCustomShapeEng
SdrObject::Free( pNewObj );
}
SdrObject::Free( pObj );
- SvxConvertB2DPolyPolygonToPolyPolygonBezier( aPolyPolygon, aPolyPolygonBezierCoords );
+ basegfx::unotools::b2DPolyPolygonToPolyPolygonBezier( aPolyPolygon,
+ aPolyPolygonBezierCoords );
}
}