[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - vcl/source

Tomaž Vajngerl (via logerrit) logerrit at kemper.freedesktop.org
Fri May 10 07:30:16 UTC 2019


 vcl/source/gdi/impgraph.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 1f514f0e99c4607b76fe3bf1ad74c51fe31e5059
Author:     Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
AuthorDate: Fri May 10 16:13:35 2019 +0900
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Fri May 10 09:29:44 2019 +0200

    fix copying of maVectorGraphicData in ImpGraphic
    
    a8c9f2f691156bca8583974c28b4b30c49956598 removed copying of
    maVectorGraphicData by mistake in operator= which means that the
    source of SVG files won't be copied and will disappear.
    
    Change-Id: I339b65e6b54215d6a108a00d630916e94da24e21
    Reviewed-on: https://gerrit.libreoffice.org/72097
    Reviewed-by: Andras Timar <andras.timar at collabora.com>
    Tested-by: Andras Timar <andras.timar at collabora.com>

diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx
index 37531f5fc2e0..a0ada3856049 100644
--- a/vcl/source/gdi/impgraph.cxx
+++ b/vcl/source/gdi/impgraph.cxx
@@ -260,6 +260,7 @@ ImpGraphic& ImpGraphic::operator=( const ImpGraphic& rImpGraphic )
             }
         }
 
+        maVectorGraphicData = rImpGraphic.maVectorGraphicData;
         mpPdfData = rImpGraphic.mpPdfData;
     }
 


More information about the Libreoffice-commits mailing list