diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2022-11-13 20:41:31 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2022-11-13 22:21:58 +0100 |
commit | 517d05dbfd1e25e51d4b813f5a4c53b89464aa43 (patch) | |
tree | fef4e2f8a8bb820cdd5b86c260748cab7ca82c8c /vcl | |
parent | 66d5ab895b75f0b81742d9c7806837cdd1acec74 (diff) |
Fix typos
Change-Id: Ic1fb0ea483954f2994a87e05f33b320da3795227
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142661
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/bitmap/bitmap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/bitmap/bitmap.cxx b/vcl/source/bitmap/bitmap.cxx index 11e58e2f32de..a92c4a41d793 100644 --- a/vcl/source/bitmap/bitmap.cxx +++ b/vcl/source/bitmap/bitmap.cxx @@ -1765,7 +1765,7 @@ void Bitmap::RemoveBlendedStartColor( // get alpha value const sal_uInt8 nAlpha8(pAlphaAcc->GetColor(y, x).GetRed()); - // not or completely transparent, no adaption needed + // not or completely transparent, no adaptation needed if(0 == nAlpha8 || 255 == nAlpha8) continue; |