Kaydet (Commit) ddd4b159 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708622 Uninitialized scalar field

Change-Id: Id8311854d77f61ea161c6d586847b91971657231
üst 13222027
...@@ -2238,7 +2238,15 @@ void MetaWallpaperAction::Read( SvStream& rIStm, ImplMetaReadData* ) ...@@ -2238,7 +2238,15 @@ void MetaWallpaperAction::Read( SvStream& rIStm, ImplMetaReadData* )
ReadWallpaper( rIStm, maWallpaper ); 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 ) : MetaClipRegionAction::MetaClipRegionAction( const Region& rRegion, bool bClip ) :
MetaAction ( META_CLIPREGION_ACTION ), MetaAction ( META_CLIPREGION_ACTION ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment