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

coverity#708570 Uninitialized scalar field

Change-Id: I0b5a12181d67db6b096807b7b32836214c71ebc8
üst f121e10c
...@@ -32,7 +32,9 @@ const static OUString SELECTEDITEMS( "SelectedItems" ); ...@@ -32,7 +32,9 @@ const static OUString SELECTEDITEMS( "SelectedItems" );
const static OUString ITEMS( "StringItemList" ); const static OUString ITEMS( "StringItemList" );
ScVbaListBox::ScVbaListBox( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< css::uno::XInterface >& xControl, const uno::Reference< frame::XModel >& xModel, AbstractGeometryAttributes* pGeomHelper ) : ListBoxImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper ) ScVbaListBox::ScVbaListBox( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< css::uno::XInterface >& xControl, const uno::Reference< frame::XModel >& xModel, AbstractGeometryAttributes* pGeomHelper )
: ListBoxImpl_BASE(xParent, xContext, xControl, xModel, pGeomHelper)
: m_nIndex(0)
{ {
mpListHelper.reset( new ListControlHelper( m_xProps ) ); mpListHelper.reset( new ListControlHelper( m_xProps ) );
} }
......
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