summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2014-02-24 14:55:05 +0100
committerAndras Timar <andras.timar@collabora.com>2014-02-24 06:41:14 -0800
commite2db2c98064ef88518004d5ff3e1a31a95645133 (patch)
tree03b2fa6a4aa288c4a1d38e9b99211184c955b266
parent1c9ac4c041092daf311452cab56e342b67bb745c (diff)
OOXML chart import: ignore rot values outside the valid range
Change-Id: I506a78a024d761d1d263a7bb1dcbf09a4bbcf4ef
-rw-r--r--oox/source/drawingml/chart/objectformatter.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/oox/source/drawingml/chart/objectformatter.cxx b/oox/source/drawingml/chart/objectformatter.cxx
index 8c3695993e43..dada09accac1 100644
--- a/oox/source/drawingml/chart/objectformatter.cxx
+++ b/oox/source/drawingml/chart/objectformatter.cxx
@@ -1105,6 +1105,11 @@ void ObjectFormatter::convertTextRotation( PropertySet& rPropSet, const ModelRef
/* Chart2 expects rotation angle as double value in range of [0,360).
OOXML counts clockwise, Chart2 counts counterclockwise. */
double fAngle = static_cast< double >( bStacked ? 0 : rxTextProp->getTextProperties().moRotation.get( 0 ) );
+ // MS Office UI allows values only in range of [-90,90].
+ if ( fAngle <= -5400000.0 || fAngle >= 5400000.0 )
+ {
+ fAngle = 0.0;
+ }
fAngle = getDoubleIntervalValue< double >( -fAngle / 60000.0, 0.0, 360.0 );
rPropSet.setProperty( PROP_TextRotation, fAngle );
}