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

coverity#1158489 Uninitialized scalar field

Change-Id: Ibe8600f8ad38859cd79d52528f970d99f0b8f536
üst 2c31a03f
......@@ -645,7 +645,14 @@ namespace cppcanvas
bool mbIsFilled;
public:
EMFPCustomLineCap() : EMFPObject()
EMFPCustomLineCap()
: EMFPObject()
, type(0)
, strokeStartCap(0)
, strokeEndCap(0)
, strokeJoin(0)
, miterLimit(0.0)
, mbIsFilled(false)
{
}
......
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