summaryrefslogtreecommitdiff
path: root/sw/source/ui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-01 09:47:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-01 17:19:49 +0100
commit9147f41ebfc74d0f006be5dd7e1bcb4b47c5ce22 (patch)
tree59b924510e0a4b09421fd280b3145f0443edf539 /sw/source/ui
parent914699ab696547002f987e45b58f505ca463dec6 (diff)
coverity#738910 Uninitialized scalar field
Change-Id: I69583731182c09ffb995a2e86b46e0192544950c
Diffstat (limited to 'sw/source/ui')
-rw-r--r--sw/source/ui/misc/num.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx
index 9890ee088ecb..74b50619db2f 100644
--- a/sw/source/ui/misc/num.cxx
+++ b/sw/source/ui/misc/num.cxx
@@ -68,9 +68,11 @@ SwNumPositionTabPage::SwNumPositionTabPage(Window* pParent,
, pSaveNum(0)
, pWrtSh(0)
, pOutlineDlg(0)
- , bPreset( false )
+ , nActNumLvl(0)
+ , bModified(false)
+ , bPreset(false)
, bInInintControl(false)
- , bLabelAlignmentPosAndSpaceModeActive( false )
+ , bLabelAlignmentPosAndSpaceModeActive(false)
{
get(m_pLevelLB, "levellb");
m_pLevelLB->EnableMultiSelection(true);