summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2021-04-10 19:30:23 +0200
committerCaolán McNamara <caolanm@redhat.com>2021-04-11 12:13:41 +0200
commit8a75c591ef0cb017c58a7f068d1ae6571f87bd90 (patch)
tree82a86073a689f95ff5ffb7ed80300b099a2707e7
parenttdf#141600 fix blured vertical line of Colibre anchor marker (diff)
downloadcore-8a75c591ef0cb017c58a7f068d1ae6571f87bd90.tar.gz
core-8a75c591ef0cb017c58a7f068d1ae6571f87bd90.zip
Related tdf#117750: fix UnsharpenFilter
Change-Id: I372bb6baae747adb3b2d2a2b8fd39d1631b074ec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113927 (cherry picked from commit 3d32e6a6ccfae56f379cb1dec6dcadf9aa8fa85f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113859 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/bitmap/BitmapSmoothenFilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/bitmap/BitmapSmoothenFilter.cxx b/vcl/source/bitmap/BitmapSmoothenFilter.cxx
index 67cea0cb3dfa..e9c135f8ec59 100644
--- a/vcl/source/bitmap/BitmapSmoothenFilter.cxx
+++ b/vcl/source/bitmap/BitmapSmoothenFilter.cxx
@@ -24,7 +24,7 @@ BitmapEx BitmapSmoothenFilter::execute(BitmapEx const& rBitmapEx) const
bRet = BitmapFilter::Filter(aBitmapEx, BitmapSeparableUnsharpenFilter(mfRadius));
if (bRet)
- return rBitmapEx;
+ return aBitmapEx;
return BitmapEx();
}