summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-29 17:55:09 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-29 18:12:09 +0000
commitca5eb633dd1f89d0a077aefa47fd049afe399192 (patch)
treeb43f789fe2a3c6e2db57334c3b9ae2af53e87918 /svx
parent7cdbf12f20c51353d90010e06203407586284843 (diff)
coverity#984152 Uninitialized pointer field
Change-Id: Ibc4837a5c0652edcf52c58883a490467e43e6eb8
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/svxbmpnumvalueset.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx b/svx/source/dialog/svxbmpnumvalueset.cxx
index 161ca7536639..03a15234fed6 100644
--- a/svx/source/dialog/svxbmpnumvalueset.cxx
+++ b/svx/source/dialog/svxbmpnumvalueset.cxx
@@ -391,6 +391,9 @@ void SvxNumValueSet::UserDraw( const UserDrawEvent& rUDEvt )
SvxNumValueSet::SvxNumValueSet(Window* pParent, WinBits nWinBits)
: ValueSet(pParent, nWinBits)
+ , nPageType(0)
+ , bHTMLMode(false)
+ , pVDev(NULL)
{
}