Kaydet (Commit) 5ff2ae5d authored tarafından Caolán McNamara's avatar Caolán McNamara

reformat member initialization

Change-Id: I6c86da271d01d63ad426d3ac99068a6ad9663705
üst 5b2f40d9
......@@ -106,15 +106,15 @@ ImpGraphic::ImpGraphic() :
{
}
ImpGraphic::ImpGraphic( const ImpGraphic& rImpGraphic ) :
maMetaFile ( rImpGraphic.maMetaFile ),
maEx ( rImpGraphic.maEx ),
mpSwapFile ( rImpGraphic.mpSwapFile ),
meType ( rImpGraphic.meType ),
mnSizeBytes ( rImpGraphic.mnSizeBytes ),
mbSwapOut ( rImpGraphic.mbSwapOut ),
mbSwapUnderway ( false ),
mbDummyContext ( rImpGraphic.mbDummyContext )
ImpGraphic::ImpGraphic(const ImpGraphic& rImpGraphic)
: maMetaFile(rImpGraphic.maMetaFile)
, maEx(rImpGraphic.maEx)
, mpSwapFile(rImpGraphic.mpSwapFile)
, meType(rImpGraphic.meType)
, mnSizeBytes(rImpGraphic.mnSizeBytes)
, mbSwapOut(rImpGraphic.mbSwapOut)
, mbSwapUnderway(false)
, mbDummyContext(rImpGraphic.mbDummyContext)
{
if( rImpGraphic.mpGfxLink )
mpGfxLink = o3tl::make_unique<GfxLink>( *rImpGraphic.mpGfxLink );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment