summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-22 20:36:28 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-22 20:36:28 +0000
commit51bef3b727bfbd2dd4eae974e6840e4ace216a61 (patch)
tree60ac8fa19d66a4107a368bf2be1e481b2d196c0f /extensions
parent3eb06071874d2d3a6f868e74876a3129efea434c (diff)
coverity#738626 Uninitialized pointer field
Change-Id: I8468009fafff845c249bddb88417a5ceeb556fb0
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/propertyeditor.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/source/propctrlr/propertyeditor.cxx b/extensions/source/propctrlr/propertyeditor.cxx
index 0cf8dffb8e0f..c302e44fa273 100644
--- a/extensions/source/propctrlr/propertyeditor.cxx
+++ b/extensions/source/propctrlr/propertyeditor.cxx
@@ -44,6 +44,8 @@ namespace pcr
OPropertyEditor::OPropertyEditor( Window* pParent, WinBits nWinStyle)
:Control(pParent, nWinStyle)
,m_aTabControl( this )
+ ,m_pListener(NULL)
+ ,m_pObserver(NULL)
,m_nNextId(1)
,m_bHasHelpSection( false )
,m_nMinHelpLines( 0 )