diff options
-rw-r--r-- | sc/source/filter/excel/xichart.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xichart.cxx b/sc/source/filter/excel/xichart.cxx index a3062d2cca18..c2b08ac7c38e 100644 --- a/sc/source/filter/excel/xichart.cxx +++ b/sc/source/filter/excel/xichart.cxx @@ -2431,7 +2431,7 @@ void XclImpChChart3d::Convert( ScfPropertySet& rPropSet, bool b3dWallChart ) con if( b3dWallChart ) { // Y rotation (Excel [0..359], Chart2 [-179,180]) - nRotationY = NormAngle180(maData.mnRotation); + nRotationY = NormAngle180<sal_Int32>(maData.mnRotation); // X rotation a.k.a. elevation (Excel [-90..90], Chart2 [-179,180]) nRotationX = limit_cast< sal_Int32, sal_Int32 >( maData.mnElevation, -90, 90 ); // perspective (Excel and Chart2 [0,100]) |