diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-03-03 17:50:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-03-04 21:57:57 +0100 |
commit | 6a05f8810684024303047ac9105be4ff5ae8c536 (patch) | |
tree | d334eeabb3444efe82e06a0eeefa2896f1a9743c /vcl | |
parent | 4e755e622f2d782d657626b6234fb3acd3d08e15 (diff) |
Fix typo
Change-Id: I48d8000abc0cd835781dffe6b2b6621639a5435f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89900
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/bitmap/BitmapFilterStackBlur.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/bitmap/BitmapFilterStackBlur.cxx b/vcl/source/bitmap/BitmapFilterStackBlur.cxx index d88480787b8b..28a0cbc80ffe 100644 --- a/vcl/source/bitmap/BitmapFilterStackBlur.cxx +++ b/vcl/source/bitmap/BitmapFilterStackBlur.cxx @@ -476,13 +476,13 @@ void centerExtendBitmap(Bitmap& rBitmap, sal_Int32 nExtendSize, Color aColor) /** * Implementation of stack blur - a fast Gaussian blur approximation. - * nRadius - blur radious, valid values are between 2 and 254 + * nRadius - blur radius, valid values are between 2 and 254 * bExtend - extend the bitmap in all directions by the radius * * Stack Blur Algorithm by Mario Klingemann <mario@quasimondo.com> * (http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html) * - * Additionally eferences and implementations: + * Additionally references and implementations: * - Blur.js by Jacob Kelley * (http://www.blurjs.com) * - BlurEffectForAndroidDesign by Nicolas Pomepuy |