diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/combobox.cxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index 9249acb8d616..5d97fd3780db 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -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(); |