summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2001-03-16 11:41:39 +0000
committerArmin Weiss <aw@openoffice.org>2001-03-16 11:41:39 +0000
commit0259c8e24fa5cb2bb8f581497949a5dc9dd74176 (patch)
tree15fd59bf27afbde036a38d1f8fb7ed955ac998d4
parent3aa72f15183415d568bc3744c077bd398d611277 (diff)
#85046# the svg:d export had an error in testing the flag array for
bezier points. Only the first flag was tested. Corrected this.
-rw-r--r--xmloff/source/draw/xexptran.cxx6
1 files 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)