embeddedobj/test/mtexecutor/bitmapcreator.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 15cc32ad4e0b532d7fbfcef713fb14f26f5c457d Author: Noel Grandin <[email protected]> AuthorDate: Mon Sep 1 09:14:44 2025 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Mon Sep 1 10:43:10 2025 +0200 BitmapEx->Bitmap in VCLBitmapCreator now that Bitmap supports transparency. This code is not part of the build, so not tested. Change-Id: I22201f5aede3bc8f720a4b4721c6711dfc1ddf41 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190461 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins diff --git a/embeddedobj/test/mtexecutor/bitmapcreator.cxx b/embeddedobj/test/mtexecutor/bitmapcreator.cxx index 60a89f8cd078..4983ada2b1ba 100644 --- a/embeddedobj/test/mtexecutor/bitmapcreator.cxx +++ b/embeddedobj/test/mtexecutor/bitmapcreator.cxx @@ -54,7 +54,7 @@ uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::createInstance() throw ( uno::Exception, uno::RuntimeException) { - BitmapEx aBitmap; + Bitmap aBitmap; uno::Reference< uno::XInterface> aResult( VCLUnoHelper::CreateBitmap( aBitmap ), uno::UNO_QUERY ); return aResult; @@ -73,7 +73,7 @@ uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::createInstanceWithA if ( !( aArguments[0] >>= aOrigBitmap ) ) throw uno::Exception(); // TODO - BitmapEx aBitmap; + Bitmap aBitmap; SvMemoryStream aStream( aOrigBitmap.getArray(), aOrigBitmap.getLength(), StreamMode::READ ); aStream >> aBitmap; if ( aStream.GetError() )
