diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2017-04-17 21:35:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-26 08:50:54 +0200 |
commit | c70d49c7c888da8cfd73db8585e7be1f37fc398a (patch) | |
tree | c0e540401850018464ca76300536faf9aa7e27d2 /starmath | |
parent | cd4344d3bdef631b3e64ac12a9e64bc9670c1b7c (diff) |
use strong_int for LanguageType
Change-Id: If99a944f7032180355da291ad283b4cfcea4f448
Reviewed-on: https://gerrit.libreoffice.org/36629
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/document.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index f0a274c82de2..67ad58e7e498 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -272,7 +272,7 @@ void SmDocShell::ArrangeFormula() // and numbers should not be converted ComplexTextLayoutFlags nLayoutMode = pOutDev->GetLayoutMode(); pOutDev->SetLayoutMode( ComplexTextLayoutFlags::Default ); - sal_Int16 nDigitLang = pOutDev->GetDigitLanguage(); + LanguageType nDigitLang = pOutDev->GetDigitLanguage(); pOutDev->SetDigitLanguage( LANGUAGE_ENGLISH ); mpTree->Arrange(*pOutDev, rFormat); @@ -290,8 +290,8 @@ void SetEditEngineDefaultFonts(SfxItemPool &rEditEngineItemPool, const SvtLinguO { // set fonts to be used struct FontDta { - sal_Int16 nFallbackLang; - sal_Int16 nLang; + LanguageType nFallbackLang; + LanguageType nLang; DefaultFontType nFontType; sal_uInt16 nFontInfoId; } aTable[3] = @@ -419,7 +419,7 @@ void SmDocShell::DrawFormula(OutputDevice &rDev, Point &rPosition, bool bDrawSel // and numbers should not be converted ComplexTextLayoutFlags nLayoutMode = rDev.GetLayoutMode(); rDev.SetLayoutMode( ComplexTextLayoutFlags::Default ); - sal_Int16 nDigitLang = rDev.GetDigitLanguage(); + LanguageType nDigitLang = rDev.GetDigitLanguage(); rDev.SetDigitLanguage( LANGUAGE_ENGLISH ); //Set selection if any |