diff options
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/vml/vmlformatting.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/oox/source/vml/vmlformatting.cxx b/oox/source/vml/vmlformatting.cxx index 0d56bc373e29..7051c3abbda3 100644 --- a/oox/source/vml/vmlformatting.cxx +++ b/oox/source/vml/vmlformatting.cxx @@ -291,9 +291,7 @@ bool lclExtractDouble( double& orfValue, sal_Int32& ornEndPos, const OUString& r // Store coordinate from current token if ( state != START ) { - bool isX = aCoordList.size() % 2 == 0; if ( nTokenLen > 0 ) - //aCoordList.push_back(decodeMeasureToHmm( rGraphicHelper, rPath.copy(nTokenStart, nTokenLen), 0, isX, true )); aCoordList.push_back( rPath.copy( nTokenStart, nTokenLen ).toInt32() ); else aCoordList.push_back( 0 ); @@ -364,6 +362,9 @@ bool lclExtractDouble( double& orfValue, sal_Int32& ornEndPos, const OUString& r rPointLists.push_back( ::std::vector< Point >() ); rFlagLists.push_back( ::std::vector< PolygonFlags >() ); break; + + case START: + break; } aCoordList.clear(); |