diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-10-22 19:06:09 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-10-22 20:25:16 +0200 |
commit | 25278dc22ff6949da442032ce2dad8638b1c8512 (patch) | |
tree | 52f49cae63c417b8b807d92d3d6cb99eb6c94f2e /starmath | |
parent | 535d406854f38c717386c6ffa0f895d204ae7038 (diff) |
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 <serval2412@yahoo.fr>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/smediteng.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
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: */ |