[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - vcl/source
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Mon Apr 12 12:04:55 UTC 2021
vcl/source/bitmap/BitmapSmoothenFilter.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit cec82db4e6fbc0fd7ea1fa032461baaf327b0b16
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Sat Apr 10 19:30:23 2021 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Apr 12 14:04:21 2021 +0200
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 at redhat.com>
(cherry picked from commit 8a75c591ef0cb017c58a7f068d1ae6571f87bd90)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113867
Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>
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();
}
More information about the Libreoffice-commits
mailing list