coverity#707736 : Uninitialized scalar field

Change-Id: Iab4b7e52d2a3a77589341d8956a8a835163c7bc5
This commit is contained in:
Norbert Thiebaud
2014-02-01 14:49:14 -06:00
parent 42fae6e07b
commit c63034aff9

View File

@@ -69,8 +69,14 @@ namespace dbaui
protected:
virtual bool PreNotify( NotifyEvent& rNEvt );
public:
OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER ) : MultiListBox(pParent,nStyle) {};
OWizTypeSelectList( Window* pParent, const ResId& rResId ) : MultiListBox(pParent,rResId) {};
OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER )
: MultiListBox(pParent,nStyle)
, m_bPKey(sal_False)
{}
OWizTypeSelectList( Window* pParent, const ResId& rResId )
: MultiListBox(pParent,rResId)
, m_bPKey(sal_False)
{}
void SetPKey(sal_Bool bPKey) { m_bPKey = bPKey; }
};