editeng/source/editeng/impedit3.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit c308e58f27045ea34cb51c7cdf3643f45e4c7265 Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Jan 7 02:15:22 2026 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Wed Jan 7 12:07:42 2026 +0100 Fix typo Change-Id: I036ea335eb048766a4986c8530295d038532ddff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196645 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Jenkins diff --git a/editeng/source/editeng/impedit3.cxx b/editeng/source/editeng/impedit3.cxx index 6b087304c6fa..e49e06c6cbde 100644 --- a/editeng/source/editeng/impedit3.cxx +++ b/editeng/source/editeng/impedit3.cxx @@ -4750,11 +4750,11 @@ Color ImpEditEngine::GetAutoColor(const SvxFont* pFont) const if (pKitSh) { Color aBackgroundColor; - if (pFont) //check for char backgound color + if (pFont) //check for char background color aBackgroundColor = pFont->GetFillColor(); - if (aBackgroundColor == COL_AUTO) // check for aother backgound (i.e: cell color) + if (aBackgroundColor == COL_AUTO) // check for another background (i.e: cell color) aBackgroundColor = GetBackgroundColor(); - if (aBackgroundColor == COL_AUTO) // if everything is auto/transperent then use doc color + if (aBackgroundColor == COL_AUTO) // if everything is auto/transparent then use doc color aBackgroundColor = pKitSh->GetColorConfigColor(svtools::DOCCOLOR); if (aBackgroundColor.IsDark())
