diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-17 09:39:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-17 10:57:57 +0100 |
commit | e43c672597a4ec274c11f63c699c25c82988f80e (patch) | |
tree | 12eb6004d336e5ec205583533994e766fb4248d5 /dbaccess | |
parent | 629bb797b9721b6305e337e3bf1ebfe53be361b1 (diff) |
coverity#1223092 Uninitialized scalar field
Change-Id: Ibfbc85562d30c541eada430759a0bda9305d9850
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/indexfieldscontrol.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dbaccess/source/ui/dlg/indexfieldscontrol.cxx b/dbaccess/source/ui/dlg/indexfieldscontrol.cxx index 776d9a0192d1..b82f719ba14d 100644 --- a/dbaccess/source/ui/dlg/indexfieldscontrol.cxx +++ b/dbaccess/source/ui/dlg/indexfieldscontrol.cxx @@ -91,10 +91,12 @@ namespace dbaui // IndexFieldsControl IndexFieldsControl::IndexFieldsControl( Window* _pParent, WinBits nWinStyle) - :EditBrowseBox(_pParent, EBBF_SMART_TAB_TRAVEL | EBBF_ACTIVATE_ON_BUTTONDOWN, nWinStyle, BROWSER_STANDARD_FLAGS) - ,m_aSeekRow(m_aFields.end()) - ,m_pSortingCell(NULL) - ,m_pFieldNameCell(NULL) + : EditBrowseBox(_pParent, EBBF_SMART_TAB_TRAVEL | EBBF_ACTIVATE_ON_BUTTONDOWN, nWinStyle, BROWSER_STANDARD_FLAGS) + , m_aSeekRow(m_aFields.end()) + , m_pSortingCell(NULL) + , m_pFieldNameCell(NULL) + , m_nMaxColumnsInIndex(0) + , m_bAddIndexAppendix(false) { SetUniqueId( UID_DLGINDEX_INDEXDETAILS_BACK ); |