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

coverity#708211 Uninitialized scalar field

Change-Id: Id1a96b9f003effe0232a875bfbd3149076096c55
üst f6953937
......@@ -52,7 +52,13 @@ struct VCL_DLLPUBLIC AnimationBitmap
Disposal eDisposal;
bool bUserInput;
AnimationBitmap() {}
AnimationBitmap()
: nWait(0)
, eDisposal(DISPOSE_NOT)
, bUserInput(false)
{
}
AnimationBitmap(
const BitmapEx& rBmpEx,
const Point& rPosPix,
......
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