From c71de3a440b6fe44776691553f2726752f184426 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 31 Mar 2014 21:19:36 +0100 Subject: coverity#708211 Uninitialized scalar field Change-Id: Id1a96b9f003effe0232a875bfbd3149076096c55 --- include/vcl/animate.hxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/vcl/animate.hxx b/include/vcl/animate.hxx index a8bcfec81fea..f75caf6f5cca 100644 --- a/include/vcl/animate.hxx +++ b/include/vcl/animate.hxx @@ -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, -- cgit