vcl/source/outdev/bitmapex.cxx | 1 + 1 file changed, 1 insertion(+) New commits: commit 316c8f0d4c30fcea9352c2118ef319ab1e4d2218 Author: Noel Grandin <noelgran...@gmail.com> AuthorDate: Wed Sep 10 08:57:36 2025 +0200 Commit: Noel Grandin <noelgran...@gmail.com> CommitDate: Fri Sep 12 09:46:25 2025 +0200
fix missing return statement in OutputDevice::DrawBitmapEx regression from commit e435c0749b9a66e6e8c77b969c976ad4030b60e0 Author: Noel Grandin <noel.gran...@collabora.co.uk> Date: Fri Jul 25 15:06:07 2025 +0200 drop OutputDevice::GetBitmapEx in favour of returning Bitmap Change-Id: Ic2c638cb6a07446cfbe198a49cac742ffad0d4ee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190732 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/vcl/source/outdev/bitmapex.cxx b/vcl/source/outdev/bitmapex.cxx index 495c29f72e14..568ef9fa20dc 100644 --- a/vcl/source/outdev/bitmapex.cxx +++ b/vcl/source/outdev/bitmapex.cxx @@ -42,6 +42,7 @@ void OutputDevice::DrawBitmapEx( const Point& rDestPt, if( !rBitmap.HasAlpha() ) { DrawBitmap(rDestPt, rBitmap); + return; } const Size aSizePx = rBitmap.GetSizePixel();