diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-17 16:59:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-17 17:19:34 +0100 |
commit | ddd4b159531e835539e86f76c56d1013de46a2bd (patch) | |
tree | bca293cafc5015d7253ea479a259d928c87c8294 /vcl | |
parent | 13222027d16dd75242da0421c292bc3551b3f0ad (diff) |
coverity#708622 Uninitialized scalar field
Change-Id: Id8311854d77f61ea161c6d586847b91971657231
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/metaact.cxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index c72c36c6fdca..db58a5533e35 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -2238,7 +2238,15 @@ void MetaWallpaperAction::Read( SvStream& rIStm, ImplMetaReadData* ) ReadWallpaper( rIStm, maWallpaper ); } -IMPL_META_ACTION( ClipRegion, META_CLIPREGION_ACTION ) +MetaClipRegionAction::MetaClipRegionAction() : + MetaAction ( META_CLIPREGION_ACTION ), + mbClip ( false ) +{ +} + +MetaClipRegionAction::~MetaClipRegionAction() +{ +} MetaClipRegionAction::MetaClipRegionAction( const Region& rRegion, bool bClip ) : MetaAction ( META_CLIPREGION_ACTION ), |