summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-12 16:10:37 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-12 16:10:37 +0100
commitd5bce6d1cd7ca09de283dc012bb777cc937f9c12 (patch)
treed77f91887c2b324b533059ad91f3e88cb91eae06 /vcl
parent1fb6688e8674c8a35e859d0ea37534777618f4d1 (diff)
coverity#1311654 Uninitialized scalar field
Change-Id: I48d9aebfba7bcd6d8ac00fcc2c76ec49216f4a0d
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/combobox.cxx11
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();