diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-11-22 16:16:49 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-11-22 21:04:58 +0100 |
commit | f17b89b9e4d1e5c1cf608a2ce1ed218917e3447b (patch) | |
tree | a5a1b1ba5da20b54fe5fd020baa007397d41eea6 /svx | |
parent | be262b04ff0e7b85c508975914d77086878155ef (diff) |
Fix typo
Change-Id: I66cb84da082a7498b1c6a79e989dd94d9f7b1b56
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159828
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/customshapes/EnhancedCustomShapeFontWork.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx index 2d86e99073c2..2e19aa344ec4 100644 --- a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx @@ -832,8 +832,8 @@ static void FitTextOutlinesToShapeOutlines(const tools::PolyPolygon& aOutlines2d sal_uInt16 i; for (i = 0; i < nPointCount; i++) { - //Normal vector for a point will be calculated from its neightbour points - //except if is in the start/end of the vector + //Normal vector for a point will be calculated from its neighbour points + //except if it is in the start/end of the vector sal_uInt16 nPointIdx1 = i == 0 ? i : i - 1; sal_uInt16 nPointIdx2 = i == nPointCount - 1 ? i : i + 1; |