summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-31 21:08:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-01 10:38:24 +0100
commitf0e8a219dc7ed1f343fff83fa1382bbbd7c57abf (patch)
tree76e580e7ea99a9ce3860619b04d6f1928cd936d2 /sfx2
parentdf524c1d306d442672392a6712106d854d61f2e3 (diff)
coverity#984141 Uninitialized pointer field
Change-Id: I326923bb14e90a89461283b344cf59c798d647f3
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/dinfdlg.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 8b3a9365b7fd..9cc689018162 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1935,6 +1935,10 @@ Sequence< beans::PropertyValue > CustomPropertiesWindow::GetCustomProperties() c
CustomPropertiesControl::CustomPropertiesControl(Window* pParent)
: VclVBox(pParent)
+ , m_pHeaderBar(NULL)
+ , m_pBody(NULL)
+ , m_pPropertiesWin(NULL)
+ , m_pVertScroll(NULL)
, m_nThumbPos(0)
{
}