summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 11:24:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 12:40:31 +0000
commitcb232b41cd4a3c1872c3b3dffcad556810b9c441 (patch)
tree28f9e163998a37b6799975e07d39e85f5ee04d53 /cui
parentcoverity#738587 Uninitialized scalar field (diff)
downloadcore-cb232b41cd4a3c1872c3b3dffcad556810b9c441.tar.gz
core-cb232b41cd4a3c1872c3b3dffcad556810b9c441.zip
coverity#738579 Uninitialized scalar field
Change-Id: If5494435c5aa536a78a6b923d30c63861d0a0dd2
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/cuicharmap.cxx5
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 &)