diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/xexptran.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/ximpshap.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/xexptran.cxx b/xmloff/source/draw/xexptran.cxx index 61a0771f3d2a..97f844315eb0 100644 --- a/xmloff/source/draw/xexptran.cxx +++ b/xmloff/source/draw/xexptran.cxx @@ -1582,7 +1582,7 @@ void SdXMLImExSvgDElement::AddPolygon( // some more circumstances in account when looking at curve segments. drawing::PolygonFlags* pFlagArray = (pFlags) ? pFlags->getArray() : 0L; - // #121090# only reduce double start/end points if polygon *is* closed + // #i121090# only reduce double start/end points if polygon *is* closed if(bClosed && (pPointArray->X == (pPointArray + (nCnt - 1))->X) && (pPointArray->Y == (pPointArray + (nCnt - 1))->Y)) { if(pFlags) diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx index 7447e1760111..19067031d44f 100644 --- a/xmloff/source/draw/ximpshap.cxx +++ b/xmloff/source/draw/ximpshap.cxx @@ -1233,7 +1233,7 @@ void SdXMLEllipseShapeContext::StartElement(const uno::Reference< xml::sax::XAtt if(mnCX != 0 || mnCY != 0 || mnRX != 1 || mnRY != 1) { - // #121972# center/radius is used, put to pos and size + // #i121972# center/radius is used, put to pos and size maSize.Width = 2 * mnRX; maSize.Height = 2 * mnRY; maPosition.X = mnCX - mnRX; |