diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 11:47:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 14:03:29 +0000 |
commit | 00902f740e67f2fc21f307d40e6d2a2c5f11db72 (patch) | |
tree | a8678976bf8b0d92683b9d44dc3c9ff7c28f40bd /cui | |
parent | 17ef1fb83d5975241673412b9f8c60efa48c7957 (diff) |
coverity#738584 Uninitialized pointer field
Change-Id: I2aefd425027f782b11dd362dcf11cd28d5e9bac0
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 988a3cdb01b6..23e6b56c7816 100644 --- a/cui/source/dialogs/thesdlg.cxx +++ b/cui/source/dialogs/thesdlg.cxx @@ -98,6 +98,7 @@ IMPL_LINK( LookUpComboBox, ModifyTimer_Hdl, Timer *, EMPTYARG /*pTimer*/ ) ReplaceEdit::ReplaceEdit(Window *pParent) : Edit(pParent, WB_BORDER | WB_TABSTOP) + , m_pBtn(NULL) { } |