starmath/source/smediteng.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit 25278dc22ff6949da442032ce2dad8638b1c8512 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Fri Oct 22 19:06:09 2021 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Fri Oct 22 20:25:16 2021 +0200 Typo: aFontHeigt->aFontHeight (starmath/smediteng.cxx) Change-Id: I8ae578350e911c69eeabbb3af41aaf9801b4ffee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124073 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/starmath/source/smediteng.cxx b/starmath/source/smediteng.cxx index c7b33373bc4d..ca1592eb2add 100644 --- a/starmath/source/smediteng.cxx +++ b/starmath/source/smediteng.cxx @@ -143,14 +143,14 @@ void SmEditEngine::setSmItemPool(SfxItemPool* mpItemPool, const SvtLinguOptions& } // Set font heights - SvxFontHeightItem aFontHeigt( + SvxFontHeightItem aFontHeight( aDefaultDevice->LogicToPixel(Size(0, 11), MapMode(MapUnit::MapPoint)).Height(), 100, EE_CHAR_FONTHEIGHT); - mpItemPool->SetPoolDefaultItem(aFontHeigt); - aFontHeigt.SetWhich(EE_CHAR_FONTHEIGHT_CJK); - mpItemPool->SetPoolDefaultItem(aFontHeigt); - aFontHeigt.SetWhich(EE_CHAR_FONTHEIGHT_CTL); - mpItemPool->SetPoolDefaultItem(aFontHeigt); + mpItemPool->SetPoolDefaultItem(aFontHeight); + aFontHeight.SetWhich(EE_CHAR_FONTHEIGHT_CJK); + mpItemPool->SetPoolDefaultItem(aFontHeight); + aFontHeight.SetWhich(EE_CHAR_FONTHEIGHT_CTL); + mpItemPool->SetPoolDefaultItem(aFontHeight); } /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */