coverity#707736 : Uninitialized scalar field
Change-Id: Iab4b7e52d2a3a77589341d8956a8a835163c7bc5
This commit is contained in:
@@ -65,12 +65,18 @@ namespace dbaui
|
|||||||
sal_Bool IsPrimaryKeyAllowed() const;
|
sal_Bool IsPrimaryKeyAllowed() const;
|
||||||
void setPrimaryKey( OFieldDescription* _pFieldDescr,
|
void setPrimaryKey( OFieldDescription* _pFieldDescr,
|
||||||
sal_uInt16 _nPos,
|
sal_uInt16 _nPos,
|
||||||
sal_Bool _bSet=sal_False);
|
sal_Bool _bSet = sal_False);
|
||||||
protected:
|
protected:
|
||||||
virtual bool PreNotify( NotifyEvent& rNEvt );
|
virtual bool PreNotify( NotifyEvent& rNEvt );
|
||||||
public:
|
public:
|
||||||
OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER ) : MultiListBox(pParent,nStyle) {};
|
OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER )
|
||||||
OWizTypeSelectList( Window* pParent, const ResId& rResId ) : MultiListBox(pParent,rResId) {};
|
: 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; }
|
void SetPKey(sal_Bool bPKey) { m_bPKey = bPKey; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user