From ef98a5aae0449cb93f11e46ea9c802326a5dd8ef Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 4 Feb 2021 10:14:53 +0100 Subject: [PATCH] Fix typo Change-Id: I2202a3208b2b65f2ca7fb887c48fce311aef8f7f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110390 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- vcl/source/font/font.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcl/source/font/font.cxx b/vcl/source/font/font.cxx index a47a811dbb64..b4f685e63967 100644 --- a/vcl/source/font/font.cxx +++ b/vcl/source/font/font.cxx @@ -500,7 +500,7 @@ SvStream& ReadFont( SvStream& rIStm, vcl::Font& rFont ) // the writing producer was on a windows system, correct pre-multiplied value // is already set, nothing to do. Ignore 2nd value. Here a check // could be done if adapting the 2nd, NormedFontScaling value would be similar to - // the set value for plausability reasons + // the set value for plausibility reasons } #else // we do not run on windows and a NormedFontScaling was written @@ -511,7 +511,7 @@ SvStream& ReadFont( SvStream& rIStm, vcl::Font& rFont ) } else { - // the writing producer was on a windows system, correct FontScvaling. + // the writing producer was on a windows system, correct FontScaling. // The correct non-pre-multiplied value is the 2nd one, use it rFont.SetAverageFontWidth(nNormedFontScaling); }