#i10000# build fix

This commit is contained in:
Release Engineers 2009-07-17 12:00:19 +00:00
parent 0851da4d8a
commit 6f93513de8

View file

@ -1149,7 +1149,7 @@ 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 = rxTextProp->getTextProperties().moRotation.get( 0 );
fAngle = getDoubleIntervalValue< double >( -fAngle / 60000.0, 0.0, 360.0 );
fAngle = getIntervalValue< double >( -fAngle / 60000.0, 0.0, 360.0 );
rPropSet.setProperty( PROP_TextRotation, fAngle );
if( bSupportsStacked )