diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:24:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:31 +0000 |
commit | cb232b41cd4a3c1872c3b3dffcad556810b9c441 (patch) | |
tree | 28f9e163998a37b6799975e07d39e85f5ee04d53 /cui/source/dialogs | |
parent | 7dd4c9212862a79389a9dce1caf0c6e26479daff (diff) |
coverity#738579 Uninitialized scalar field
Change-Id: If5494435c5aa536a78a6b923d30c63861d0a0dd2
Diffstat (limited to 'cui/source/dialogs')
-rw-r--r-- | cui/source/dialogs/cuicharmap.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cui/source/dialogs/cuicharmap.cxx b/cui/source/dialogs/cuicharmap.cxx index 7c647f39d3b8..4159a31eaa33 100644 --- a/cui/source/dialogs/cuicharmap.cxx +++ b/cui/source/dialogs/cuicharmap.cxx @@ -172,8 +172,9 @@ short SvxCharacterMap::Execute() // class SvxShowText ===================================================== SvxShowText::SvxShowText(Window* pParent, sal_Bool bCenter) -: Control( pParent ), - mbCenter( bCenter) + : Control(pParent) + , mnY(0) + , mbCenter(bCenter) {} extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvxShowText(Window *pParent, VclBuilder::stringmap &) |