summaryrefslogtreecommitdiff
path: root/unoxml/source/events/mutationevent.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-01-19 20:27:26 +0100
committerMichael Stahl <mst@openoffice.org>2011-01-19 20:27:26 +0100
commit9123a2f7c219f93f0db63d359c1d0f362d32b59a (patch)
tree51fb6d83967c8d5579586f8ba75a6459607f7f21 /unoxml/source/events/mutationevent.hxx
parent57c23f6329f58cd359200413c55e7988ab1e32db (diff)
xmlfix3: #i113682#: unoxml: CEvent gets a mutex member;
also initialize member variables in constructors.
Diffstat (limited to 'unoxml/source/events/mutationevent.hxx')
-rw-r--r--unoxml/source/events/mutationevent.hxx7
1 files changed, 6 insertions, 1 deletions
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();