Kaydet (Commit) 97cb7cd1 authored tarafından Matteo Casalin's avatar Matteo Casalin

CID 1231678: Uninitialized pointer field

Change-Id: I1c691b2c9c66b99957b07df4197c0a67c2598273
üst f5387877
...@@ -74,6 +74,7 @@ namespace dbaui ...@@ -74,6 +74,7 @@ namespace dbaui
OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER ) OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER )
: MultiListBox(pParent,nStyle) : MultiListBox(pParent,nStyle)
, m_bPKey(false) , m_bPKey(false)
, m_pParentTabPage(NULL)
{} {}
void SetPKey(bool bPKey) { m_bPKey = bPKey; } void SetPKey(bool bPKey) { m_bPKey = bPKey; }
void SetParentTabPage(Window* pParentTabPage) { m_pParentTabPage = pParentTabPage; } void SetParentTabPage(Window* pParentTabPage) { m_pParentTabPage = pParentTabPage; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment