Kaydet (Commit) d5bce6d1 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1311654 Uninitialized scalar field

Change-Id: I48d9aebfba7bcd6d8ac00fcc2c76ec49216f4a0d
üst 1fb6688e
......@@ -63,7 +63,16 @@ struct ComboBox::Impl
Link<> m_DoubleClickHdl;
boost::signals2::scoped_connection m_AutocompleteConnection;
Impl(ComboBox & rThis) : m_rThis(rThis) {}
Impl(ComboBox & rThis)
: m_rThis(rThis)
, m_nDDHeight(0)
, m_cMultiSep(0)
, m_isDDAutoSize(false)
, m_isSyntheticModify(false)
, m_isMatchCase(false)
, m_nMaxWidthChars(0)
{
}
void ImplInitComboBoxData();
void ImplUpdateFloatSelection();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment