[Libreoffice-commits] core.git: sd/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 3 12:29:10 UTC 2021


 sd/source/filter/eppt/epptso.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9e6a2a6eb3c959bd9ca3fc3a24ae089489383a69
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jun 3 09:33:16 2021 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jun 3 14:28:22 2021 +0200

    cid#1485165 avoid Missing move assignment operator
    
    Change-Id: I9113e589f74a119fc24e174e7e35036beb0d7acd
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116643
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx
index 1b7248814ab5..b5c2bd864a2c 100644
--- a/sd/source/filter/eppt/epptso.cxx
+++ b/sd/source/filter/eppt/epptso.cxx
@@ -117,7 +117,7 @@ sal_uInt16 PPTExBulletProvider::GetId(Graphic const & rGraphic, Size& rGraphicSi
                                      static_cast<sal_Int32>(static_cast<double>(rGraphicSize.Height()) / fYScale + 0.5 ) );
 
                     aMappedGraphic = Graphic( aBmpEx );
-                    aGraphicObject = GraphicObject(aMappedGraphic);
+                    aGraphicObject.SetGraphic(aMappedGraphic);
                 }
             }
         }


More information about the Libreoffice-commits mailing list