[Libreoffice-commits] core.git: chart2/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sat Aug 29 09:42:28 UTC 2020


 chart2/source/view/main/ShapeFactory.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 0fb7ecb08dfce4b211ff91c062518dbe1b732bb1
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 28 14:47:07 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Aug 29 11:41:30 2020 +0200

    Fix typo in code
    
    It passed "make check" on Linux
    
    Change-Id: I935d0d0d6f33144702386d75b3a5bcc3675ae4aa
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101625
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/chart2/source/view/main/ShapeFactory.cxx b/chart2/source/view/main/ShapeFactory.cxx
index 59cf88675070..22b9f8d07820 100644
--- a/chart2/source/view/main/ShapeFactory.cxx
+++ b/chart2/source/view/main/ShapeFactory.cxx
@@ -748,9 +748,9 @@ static drawing::PolyPolygonBezierCoords getCircularArcBezierCoords(
     }
     else
     {
-        double fFirstAngleOnSubDevision = (static_cast<sal_Int32>(fStartAngleRadian/fAngleSubdivisionRadian)+1)*fAngleSubdivisionRadian;
-        if( !::rtl::math::approxEqual( fStartAngleRadian, fFirstAngleOnSubDevision ) )
-            fFirstSegmentAngle = fFirstAngleOnSubDevision-fStartAngleRadian;
+        double fFirstAngleOnSubDivision = (static_cast<sal_Int32>(fStartAngleRadian/fAngleSubdivisionRadian)+1)*fAngleSubdivisionRadian;
+        if( !::rtl::math::approxEqual( fStartAngleRadian, fFirstAngleOnSubDivision ) )
+            fFirstSegmentAngle = fFirstAngleOnSubDivision-fStartAngleRadian;
 
         if(nSegmentCount>1)
         {
@@ -781,7 +781,7 @@ static drawing::PolyPolygonBezierCoords getCircularArcBezierCoords(
     for(sal_Int32 nSegment=0; nSegment<nSegmentCount; nSegment++)
     {
         double fCurrentSegmentAngle = fAngleSubdivisionRadian;
-        if(nSegment==0)//first segment gets only a smaller peace until the next subdevision
+        if(nSegment==0)//first segment gets only a smaller peace until the next subdivision
             fCurrentSegmentAngle = fFirstSegmentAngle;
         else if(nSegment==(nSegmentCount-1)) //the last segment gets the rest angle that does not fit into equal pieces
             fCurrentSegmentAngle = fLastSegmentAngle;


More information about the Libreoffice-commits mailing list