summaryrefslogtreecommitdiff
path: root/unoxml/source/events
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-01-19 20:27:27 +0100
committerMichael Stahl <mst@openoffice.org>2011-01-19 20:27:27 +0100
commit07a097e2815b38011ac05e0c0607149a28f71c8f (patch)
tree7c21ab1176750996fcfc1291321cc7d20739564f /unoxml/source/events
parent9123a2f7c219f93f0db63d359c1d0f362d32b59a (diff)
xmlfix3: unoxml: cleanup friend declarations
Diffstat (limited to 'unoxml/source/events')
-rw-r--r--unoxml/source/events/event.hxx6
-rw-r--r--unoxml/source/events/mouseevent.hxx1
-rw-r--r--unoxml/source/events/mutationevent.hxx1
-rw-r--r--unoxml/source/events/uievent.hxx1
4 files changed, 0 insertions, 9 deletions
diff --git a/unoxml/source/events/event.hxx b/unoxml/source/events/event.hxx
index dd6619542feb..0336be16412f 100644
--- a/unoxml/source/events/event.hxx
+++ b/unoxml/source/events/event.hxx
@@ -50,12 +50,6 @@ namespace DOM {namespace events
class CEvent : public cppu::WeakImplHelper1< XEvent >
{
friend class CEventDispatcher;
-friend class CNode;
-friend class CDocument;
-friend class CElement;
-friend class CText;
-friend class CCharacterData;
-friend class CAttr;
protected:
::osl::Mutex m_Mutex;
diff --git a/unoxml/source/events/mouseevent.hxx b/unoxml/source/events/mouseevent.hxx
index 483ea3a6650c..0bbcbf7698b7 100644
--- a/unoxml/source/events/mouseevent.hxx
+++ b/unoxml/source/events/mouseevent.hxx
@@ -46,7 +46,6 @@ typedef ::cppu::ImplInheritanceHelper1< CUIEvent, XMouseEvent >
class CMouseEvent
: public CMouseEvent_Base
{
- friend class CEventDispatcher;
protected:
sal_Int32 m_screenX;
sal_Int32 m_screenY;
diff --git a/unoxml/source/events/mutationevent.hxx b/unoxml/source/events/mutationevent.hxx
index 89c484a57e85..20b8dbf4523a 100644
--- a/unoxml/source/events/mutationevent.hxx
+++ b/unoxml/source/events/mutationevent.hxx
@@ -51,7 +51,6 @@ typedef ::cppu::ImplInheritanceHelper1< CEvent, XMutationEvent >
class CMutationEvent
: public CMutationEvent_Base
{
- friend class CEventDispatcher;
protected:
Reference< XNode > m_relatedNode;
OUString m_prevValue;
diff --git a/unoxml/source/events/uievent.hxx b/unoxml/source/events/uievent.hxx
index 2a33c5d696c5..2f1c6f28dc3d 100644
--- a/unoxml/source/events/uievent.hxx
+++ b/unoxml/source/events/uievent.hxx
@@ -49,7 +49,6 @@ typedef ::cppu::ImplInheritanceHelper1< CEvent, XUIEvent > CUIEvent_Base;
class CUIEvent
: public CUIEvent_Base
{
- friend class CEventDispatcher;
protected:
sal_Int32 m_detail;
Reference< XAbstractView > m_view;