summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-17 16:53:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-17 17:19:34 +0100
commitb5397261700d1641f7a400ecc0b7ef52a901551b (patch)
tree195f4fc8ee9e6516da7708a10ee75cdbcc9f39fa /vcl
parent9db1ec2b94ed58d17d87211d05a780393145c244 (diff)
coverity#708612 Uninitialized scalar field
Change-Id: Iced922ef50ff9296ab6922aac0d7ec2c5f45cb09
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/metaact.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index daf10adef627..c72c36c6fdca 100644
--- a/vcl/source/gdi/metaact.cxx
+++ b/vcl/source/gdi/metaact.cxx
@@ -423,7 +423,16 @@ void MetaRectAction::Read( SvStream& rIStm, ImplMetaReadData* )
ReadRectangle( rIStm, maRect );
}
-IMPL_META_ACTION( RoundRect, META_ROUNDRECT_ACTION )
+MetaRoundRectAction::MetaRoundRectAction() :
+ MetaAction ( META_ROUNDRECT_ACTION ),
+ mnHorzRound ( 0 ),
+ mnVertRound ( 0 )
+{
+}
+
+MetaRoundRectAction::~MetaRoundRectAction()
+{
+}
MetaRoundRectAction::MetaRoundRectAction( const Rectangle& rRect,
sal_uInt32 nHorzRound, sal_uInt32 nVertRound ) :