summaryrefslogtreecommitdiff
path: root/vcl/source/gdi
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-17 16:12:46 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-17 17:19:32 +0100
commitd9dece90100936b763a2e2da07517635022fbc8e (patch)
treee8441879b5a5563b59982e4164d2173580e8e259 /vcl/source/gdi
parent56a00607a4d25cbfd6660136aa08a73f732bc4a0 (diff)
coverity#708606 Uninitialized scalar field
Change-Id: I28adcc868faeb51e49132d12b1a930580961c66c
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r--vcl/source/gdi/metaact.cxx10
1 files changed, 9 insertions, 1 deletions
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 ),