diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 11:46:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 14:03:29 +0000 |
commit | 17ef1fb83d5975241673412b9f8c60efa48c7957 (patch) | |
tree | 1e588a4ec4c581946a35cf398cfbf72313825c6f /cui | |
parent | 609956aea76292cc6ab5f4dc84b7fc0d9fb74ed0 (diff) |
coverity#738585 Uninitialized pointer field
Change-Id: I3d876fc4fa450204776f8aae82c95081a50f4759
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/thesdlg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx index 80dbfe48b5bf..988a3cdb01b6 100644 --- a/cui/source/dialogs/thesdlg.cxx +++ b/cui/source/dialogs/thesdlg.cxx @@ -58,6 +58,7 @@ using namespace ::com::sun::star; LookUpComboBox::LookUpComboBox(Window *pParent) : ComboBox(pParent, WB_LEFT|WB_DROPDOWN|WB_VCENTER|WB_3DLOOK|WB_TABSTOP) + , m_pDialog(NULL) { EnableAutoSize(true); |