From 9123a2f7c219f93f0db63d359c1d0f362d32b59a Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 19 Jan 2011 20:27:26 +0100 Subject: xmlfix3: #i113682#: unoxml: CEvent gets a mutex member; also initialize member variables in constructors. --- unoxml/source/events/mutationevent.hxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'unoxml/source/events/mutationevent.hxx') diff --git a/unoxml/source/events/mutationevent.hxx b/unoxml/source/events/mutationevent.hxx index e725a63b1a21..89c484a57e85 100644 --- a/unoxml/source/events/mutationevent.hxx +++ b/unoxml/source/events/mutationevent.hxx @@ -45,7 +45,11 @@ using ::rtl::OUString; namespace DOM { namespace events { -class CMutationEvent : public cppu::ImplInheritanceHelper1< CEvent, XMutationEvent > +typedef ::cppu::ImplInheritanceHelper1< CEvent, XMutationEvent > + CMutationEvent_Base; + +class CMutationEvent + : public CMutationEvent_Base { friend class CEventDispatcher; protected: @@ -56,6 +60,7 @@ protected: AttrChangeType m_attrChangeType; public: + explicit CMutationEvent(); virtual ~CMutationEvent(); -- cgit