From d9dece90100936b763a2e2da07517635022fbc8e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 17 Apr 2014 16:12:46 +0100 Subject: coverity#708606 Uninitialized scalar field Change-Id: I28adcc868faeb51e49132d12b1a930580961c66c --- vcl/source/gdi/metaact.cxx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'vcl/source/gdi') diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index cfcda99eb54c..26c9eee9554b 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -2878,7 +2878,15 @@ void MetaPopAction::Read( SvStream& rIStm, ImplMetaReadData* ) COMPAT( rIStm ); } -IMPL_META_ACTION( RasterOp, META_RASTEROP_ACTION ) +MetaRasterOpAction::MetaRasterOpAction() : + MetaAction ( META_RASTEROP_ACTION ), + meRasterOp ( ROP_OVERPAINT ) +{ +} + +MetaRasterOpAction::~MetaRasterOpAction() +{ +} MetaRasterOpAction::MetaRasterOpAction( RasterOp eRasterOp ) : MetaAction ( META_RASTEROP_ACTION ), -- cgit