From 79611a44fac472dfa5f0a01c051c314078f798b9 Mon Sep 17 00:00:00 2001 From: Tamás Zolnai Date: Wed, 16 Aug 2017 22:02:53 +0200 Subject: NdTopLeft is unused now. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I39184b8fdf666676c21560d39911f6204b0afd52 Reviewed-on: https://gerrit.libreoffice.org/41257 Tested-by: Jenkins Reviewed-by: Tamás Zolnai --- oox/source/export/vmlexport.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'oox') diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx index 3ee2711f8e5f..a401c3c44465 100644 --- a/oox/source/export/vmlexport.cxx +++ b/oox/source/export/vmlexport.cxx @@ -60,7 +60,6 @@ VMLExport::VMLExport( ::sax_fastparser::FSHelperPtr const & pSerializer, VMLText , m_eHRel( 0 ) , m_eVRel( 0 ) , m_bInline( false ) - , m_pNdTopLeft( nullptr ) , m_pSdrObject( nullptr ) , m_pShapeAttrList( nullptr ) , m_nShapeType( ESCHER_ShpInst_Nil ) @@ -1280,14 +1279,13 @@ void VMLExport::EndShape( sal_Int32 nShapeElement ) } } -OString VMLExport::AddSdrObject( const SdrObject& rObj, sal_Int16 eHOri, sal_Int16 eVOri, sal_Int16 eHRel, sal_Int16 eVRel, const Point* pNdTopLeft, const bool bOOxmlExport ) +OString VMLExport::AddSdrObject( const SdrObject& rObj, sal_Int16 eHOri, sal_Int16 eVOri, sal_Int16 eHRel, sal_Int16 eVRel, const bool bOOxmlExport ) { m_pSdrObject = &rObj; m_eHOri = eHOri; m_eVOri = eVOri; m_eHRel = eHRel; m_eVRel = eVRel; - m_pNdTopLeft = pNdTopLeft; EscherEx::AddSdrObject(rObj, bOOxmlExport); return m_sShapeId; } -- cgit