diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-08-16 22:56:18 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-08-16 22:56:18 +0200 |
commit | 97cb7cd16c809e8311eada4200c748984e3f148f (patch) | |
tree | 0d256c8007e8cc84e5e8e8021e2821c8467e7add /dbaccess/source/ui/inc | |
parent | f53878770a3e3f82659df3d74fd8fd2d408476b3 (diff) |
CID 1231678: Uninitialized pointer field
Change-Id: I1c691b2c9c66b99957b07df4197c0a67c2598273
Diffstat (limited to 'dbaccess/source/ui/inc')
-rw-r--r-- | dbaccess/source/ui/inc/WTypeSelect.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dbaccess/source/ui/inc/WTypeSelect.hxx b/dbaccess/source/ui/inc/WTypeSelect.hxx index 5e498d139607..0967c5c06252 100644 --- a/dbaccess/source/ui/inc/WTypeSelect.hxx +++ b/dbaccess/source/ui/inc/WTypeSelect.hxx @@ -74,6 +74,7 @@ namespace dbaui OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER ) : MultiListBox(pParent,nStyle) , m_bPKey(false) + , m_pParentTabPage(NULL) {} void SetPKey(bool bPKey) { m_bPKey = bPKey; } void SetParentTabPage(Window* pParentTabPage) { m_pParentTabPage = pParentTabPage; } |