From 0259c8e24fa5cb2bb8f581497949a5dc9dd74176 Mon Sep 17 00:00:00 2001 From: Armin Weiss Date: Fri, 16 Mar 2001 11:41:39 +0000 Subject: #85046# the svg:d export had an error in testing the flag array for bezier points. Only the first flag was tested. Corrected this. --- xmloff/source/draw/xexptran.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xmloff/source/draw/xexptran.cxx b/xmloff/source/draw/xexptran.cxx index afcf40ff8357..856db26536ec 100644 --- a/xmloff/source/draw/xexptran.cxx +++ b/xmloff/source/draw/xexptran.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xexptran.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: aw $ $Date: 2001-03-08 17:40:12 $ + * last change: $Author: aw $ $Date: 2001-03-16 12:41:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1456,7 +1456,7 @@ void SdXMLImExSvgDElement::AddPolygon( drawing::PolygonFlags* pFlagArray = pFlags->getArray(); for(sal_Int32 a(0); !bFlagsUsed && a < nFlagCnt; a++) - if(drawing::PolygonFlags_NORMAL != *pFlagArray) + if(drawing::PolygonFlags_NORMAL != *pFlagArray++) bFlagsUsed = sal_True; if(!bFlagsUsed) -- cgit