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

coverity#707814 Uninitialized scalar field

Change-Id: I5d4482eddc51b3c92a5ffb02d6048f3ae528184a
üst 24627a99
......@@ -751,7 +751,17 @@ void DXF2GDIMetaFile::DrawEntities(const DXFEntities & rEntities,
}
DXF2GDIMetaFile::DXF2GDIMetaFile():pVirDev(NULL), pDXF(NULL), nBlockColor(0), nParentLayerColor(0)
DXF2GDIMetaFile::DXF2GDIMetaFile()
: pVirDev(NULL)
, pDXF(NULL)
, bStatus(false)
, OptPointsPerCircle(0)
, nMinPercent(0)
, nMaxPercent(0)
, nLastPercent(0)
, nMainEntitiesCount(0)
, nBlockColor(0)
, nParentLayerColor(0)
{
}
......
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