vcl/source/outdev/bitmap.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 98e54efc2098f428314cc5c9e7c2e0f52947f0aa Author: Christopher Sherlock <chris.sherloc...@gmail.com> AuthorDate: Sat Aug 2 17:30:58 2025 +1000 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Sun Aug 24 22:34:50 2025 +0200 vcl: make aTradContext const Change-Id: I345bedc249068208b4b52b19e0e53e02677b0de1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188809 Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> Tested-by: Jenkins diff --git a/vcl/source/outdev/bitmap.cxx b/vcl/source/outdev/bitmap.cxx index d9b5989c3e93..f7e20a9fd40d 100644 --- a/vcl/source/outdev/bitmap.cxx +++ b/vcl/source/outdev/bitmap.cxx @@ -516,7 +516,7 @@ void OutputDevice::DrawDeviceAlphaBitmapSlowPath(const Bitmap& rBitmap, const tools::Long nOffY = aDstRect.Top() - aOutPoint.Y(); - TradScaleContext aTradContext(aDstRect, aBmpRect, aOutSize, nOffX, nOffY); + const TradScaleContext aTradContext(aDstRect, aBmpRect, aOutSize, nOffX, nOffY); BitmapScopedReadAccess pCheckAlphaReadAccess(rAlpha);