filter/source/graphicfilter/ios2met/ios2met.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f6b87a7d64cd7c979ebbe032166ef256d4f0d844
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Mon Jul 8 12:25:02 2019 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Mon Jul 8 15:51:34 2019 +0200

    use BitmapEx in OS2METReader
    
    Change-Id: I03750087174488f1debb2c33e55effe956a59e1d
    Reviewed-on: https://gerrit.libreoffice.org/75213
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/filter/source/graphicfilter/ios2met/ios2met.cxx 
b/filter/source/graphicfilter/ios2met/ios2met.cxx
index 56ca5ac3c241..f1d8e5661083 100644
--- a/filter/source/graphicfilter/ios2met/ios2met.cxx
+++ b/filter/source/graphicfilter/ios2met/ios2met.cxx
@@ -246,7 +246,7 @@ struct OSFont {
 struct OSBitmap {
     OSBitmap * pSucc;
     sal_uInt32 nID;
-    Bitmap     aBitmap;
+    BitmapEx   aBitmapEx;
 
     // required during reading of the bitmap:
     SvStream * pBMP; // pointer to temporary Windows-BMP file or NULL
@@ -990,7 +990,7 @@ void OS2METReader::ReadBitBlt()
     while (pB!=nullptr && pB->nID!=nID) pB=pB->pSucc;
     if (pB!=nullptr) {
         SetRasterOp(aAttr.ePatMix);
-        pVirDev->DrawBitmap(aP1,aSize,pB->aBitmap);
+        pVirDev->DrawBitmapEx(aP1,aSize,pB->aBitmapEx);
     }
 }
 
@@ -2486,7 +2486,7 @@ void OS2METReader::ReadField(sal_uInt16 nFieldType, 
sal_uInt16 nFieldSize)
             }
             pBitmapList->pBMP->Seek(0);
 
-            ReadDIB(pBitmapList->aBitmap, *(pBitmapList->pBMP), false);
+            ReadDIBBitmapEx(pBitmapList->aBitmapEx, *(pBitmapList->pBMP), 
false);
 
             if (pBitmapList->pBMP->GetError()!=ERRCODE_NONE) {
                 pOS2MET->SetError(SVSTREAM_FILEFORMAT_ERROR);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to