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

coverity#707864 Uninitialized scalar field

Change-Id: Ieb42d64ead25d9e06175a7664d8659e0907d28f1
üst 627b0c68
...@@ -39,8 +39,14 @@ class XFormsEventConcrete : public cppu::WeakImplHelper1< XFormsEvent > { ...@@ -39,8 +39,14 @@ class XFormsEventConcrete : public cppu::WeakImplHelper1< XFormsEvent > {
typedef com::sun::star::xml::dom::events::PhaseType PhaseType_t; typedef com::sun::star::xml::dom::events::PhaseType PhaseType_t;
typedef com::sun::star::util::Time Time_t; typedef com::sun::star::util::Time Time_t;
inline XFormsEventConcrete( void ) : m_canceled(sal_False) {} XFormsEventConcrete()
virtual ~XFormsEventConcrete( void ) {} : m_canceled(false)
, m_phase(com::sun::star::xml::dom::events::PhaseType_CAPTURING_PHASE)
, m_bubbles(false)
, m_cancelable(false)
{
}
virtual ~XFormsEventConcrete() {}
virtual OUString SAL_CALL getType() throw (RuntimeException_t, std::exception) SAL_OVERRIDE; virtual OUString SAL_CALL getType() throw (RuntimeException_t, std::exception) SAL_OVERRIDE;
virtual XEventTarget_t SAL_CALL getTarget() throw (RuntimeException_t, std::exception) SAL_OVERRIDE; virtual XEventTarget_t SAL_CALL getTarget() throw (RuntimeException_t, std::exception) SAL_OVERRIDE;
......
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