summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-07-18 13:29:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-07-18 15:36:15 +0100
commite2669d7ee66b59c63114a94875b39d5c1e26d132 (patch)
tree351d53796abe7a3ea16075b624ac8b5d660a7481 /svx/source
parentf9094a5eaa00e8b7e6ac44453a0f60feea595fb1 (diff)
coverity#1226494 Uninitialized pointer field
Change-Id: I88d0414ea6188e807aa347dce4567821e0b7c6f3
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/form/datanavi.cxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx
index 0088a161a573..7a40de440a74 100644
--- a/svx/source/form/datanavi.cxx
+++ b/svx/source/form/datanavi.cxx
@@ -123,12 +123,16 @@ namespace svxform
m_xPropSet( _rxSet ) {}
};
-
// class DataTreeListBox
-
- DataTreeListBox::DataTreeListBox( Window* pParent, WinBits nBits ) :
-
- SvTreeListBox( pParent, nBits )
+ DataTreeListBox::DataTreeListBox(Window* pParent, WinBits nBits)
+ : SvTreeListBox(pParent, nBits)
+ , m_pXFormsPage(NULL)
+ , m_eGroup(DGTUnknown)
+ , m_nAddId(0)
+ , m_nAddElementId(0)
+ , m_nAddAttributeId(0)
+ , m_nEditId(0)
+ , m_nRemoveId(0)
{
EnableContextMenuHandling();