diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-16 20:31:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-17 14:46:26 +0100 |
commit | ffbb27d0d7bfd4fa2b297959385e9b3cee0b30da (patch) | |
tree | 6c0a5a4882ca1ad53fe88c5d52e49ab839d216f1 /extensions | |
parent | fdf9fa4fd2e3b64e2392b6743b7ff76f445b0880 (diff) |
coverity#1327455 Uninitialized pointer field
Change-Id: Icc7405e5b68725e28447a1f2c1cbed2fbe6b8049
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/usercontrol.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/usercontrol.hxx b/extensions/source/propctrlr/usercontrol.hxx index 3171deedab2c..2c21bf7cefaa 100644 --- a/extensions/source/propctrlr/usercontrol.hxx +++ b/extensions/source/propctrlr/usercontrol.hxx @@ -39,7 +39,8 @@ namespace pcr { public: NumberFormatSampleField( vcl::Window* _pParent, WinBits _nStyle ) - :FormattedField( _pParent, _nStyle ) + : FormattedField(_pParent, _nStyle) + , m_pHelper(nullptr) { } |