summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/source/gdi/impgraph.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx
index 59d4b38ec7f8..f96a4b28e305 100644
--- a/vcl/source/gdi/impgraph.cxx
+++ b/vcl/source/gdi/impgraph.cxx
@@ -115,6 +115,8 @@ ImpGraphic::ImpGraphic(const ImpGraphic& rImpGraphic)
, mbSwapOut(rImpGraphic.mbSwapOut)
, mbSwapUnderway(false)
, mbDummyContext(rImpGraphic.mbDummyContext)
+ , maSvgData(rImpGraphic.maSvgData)
+ , maPdfData(rImpGraphic.maPdfData)
{
if( rImpGraphic.mpGfxLink )
mpGfxLink = o3tl::make_unique<GfxLink>( *rImpGraphic.mpGfxLink );
@@ -124,9 +126,6 @@ ImpGraphic::ImpGraphic(const ImpGraphic& rImpGraphic)
mpAnimation = o3tl::make_unique<Animation>( *rImpGraphic.mpAnimation );
maEx = mpAnimation->GetBitmapEx();
}
-
- maSvgData = rImpGraphic.maSvgData;
- maPdfData = rImpGraphic.maPdfData;
}
ImpGraphic::ImpGraphic( const Bitmap& rBitmap ) :