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

coverity#708730 Uninitialized scalar field

Change-Id: I464774697703b7143c3a6b0df88aa32745824394
üst 920560b6
...@@ -307,18 +307,26 @@ public: ...@@ -307,18 +307,26 @@ public:
bool importVisualEffectStyle( bool importVisualEffectStyle(
css::uno::Reference< css::beans::XPropertySet > const & xProps ); css::uno::Reference< css::beans::XPropertySet > const & xProps );
inline StyleElement( StyleElement(
OUString const & rLocalName, OUString const & rLocalName,
css::uno::Reference< css::xml::input::XAttributes > const & xAttributes, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes,
ElementBase * pParent, DialogImport * pImport ) ElementBase * pParent, DialogImport * pImport )
SAL_THROW(()) SAL_THROW(())
: ElementBase( pImport->XMLNS_DIALOGS_UID, : ElementBase( pImport->XMLNS_DIALOGS_UID,
rLocalName, xAttributes, pParent, pImport ) rLocalName, xAttributes, pParent, pImport )
, _backgroundColor(0)
, _textColor(0)
, _textLineColor(0)
, _border(0)
, _borderColor(0)
, _fontRelief( css::awt::FontRelief::NONE ) , _fontRelief( css::awt::FontRelief::NONE )
, _fontEmphasisMark( css::awt::FontEmphasisMark::NONE ) , _fontEmphasisMark( css::awt::FontEmphasisMark::NONE )
, _fillColor(0)
, _visualEffect(0)
, _inited( 0 ) , _inited( 0 )
, _hasValue( 0 ) , _hasValue( 0 )
{} {
}
}; };
class MenuPopupElement class MenuPopupElement
......
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