diff options
author | Tor Lillqvist <tml@collabora.com> | 2021-02-21 12:46:27 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2021-02-21 20:25:48 +0100 |
commit | 385808a2dff7300ec0120fdd5e8acfad8f86e50d (patch) | |
tree | e55d943c938bd7a55afa3843995682da50804020 /svx/source | |
parent | e150c78cdfbe112bd880107b476ac42e72d4643c (diff) |
Typo fix: supress -> suppress
Change-Id: I72aeaff1bc8ac67253265ea99de91b9b9906e5d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111275
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/dialog/framelinkarray.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/framelinkarray.cxx b/svx/source/dialog/framelinkarray.cxx index c54fc5167120..6c06c303d204 100644 --- a/svx/source/dialog/framelinkarray.cxx +++ b/svx/source/dialog/framelinkarray.cxx @@ -1080,7 +1080,7 @@ drawinglayer::primitive2d::Primitive2DContainer Array::CreateB2DPrimitiveRange( // Additionally avoid double-handling by suppressing handling when self not rotated, // but above/left is rotated and thus already handled. Two directly connected // rotated will paint/create both edges, they might be rotated differently. - const bool bSupressLeft(!bRotated && nCol > nFirstCol && CELL(nCol - 1, nRow).IsRotated()); + const bool bSuppressLeft(!bRotated && nCol > nFirstCol && CELL(nCol - 1, nRow).IsRotated()); const bool bSuppressAbove(!bRotated && nRow > nFirstRow && CELL(nCol, nRow - 1).IsRotated()); if(!aX.equalZero() && !aY.equalZero()) @@ -1121,7 +1121,7 @@ drawinglayer::primitive2d::Primitive2DContainer Array::CreateB2DPrimitiveRange( // create left line for this Cell if ((!bOverlapX // true for first column in merged cells or cells || bFirstCol) // true for non_Calc usages of this tooling - && !bSupressLeft) // true when left is not rotated, so edge is already handled (see bRotated) + && !bSuppressLeft) // true when left is not rotated, so edge is already handled (see bRotated) { const Style& rLeft(GetCellStyleLeft(nCol, nRow)); @@ -1234,7 +1234,7 @@ drawinglayer::primitive2d::Primitive2DContainer Array::CreateB2DPrimitiveRange( // create left line for this Cell if ((!bOverlapX // true for first column in merged cells or cells || bFirstCol) // true for non_Calc usages of this tooling - && !bSupressLeft) // true when left is not rotated, so edge is already handled (see bRotated) + && !bSuppressLeft) // true when left is not rotated, so edge is already handled (see bRotated) { const Style& rLeft(GetCellStyleLeft(nCol, nRow)); |