summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2002-05-08 06:54:46 +0000
committerFrank Schönheit <fs@openoffice.org>2002-05-08 06:54:46 +0000
commitbe7621089449a4745942d7b04ca1269f9f0a3d28 (patch)
treeae7c80ae0b80ed1e31e45d1ff7b758c07e367a77
parentb8e9486c31a6cbff89f665eb70a67ebb4f733eab (diff)
#98750# no use the context (not the XAccessible) as event source, again, as usual in the UNO world
-rw-r--r--comphelper/source/misc/accessiblecontexthelper.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/comphelper/source/misc/accessiblecontexthelper.cxx b/comphelper/source/misc/accessiblecontexthelper.cxx
index 2bb9fed478d2..8f997f173c8a 100644
--- a/comphelper/source/misc/accessiblecontexthelper.cxx
+++ b/comphelper/source/misc/accessiblecontexthelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessiblecontexthelper.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: hr $ $Date: 2002-04-30 07:42:27 $
+ * last change: $Author: fs $ $Date: 2002-05-08 07:54:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -199,7 +199,7 @@ namespace comphelper
if ( aListeners.getLength() )
{
AccessibleEventObject aEvent;
- aEvent.Source = m_pImpl->getCreator();
+ aEvent.Source = *this;
OSL_ENSURE( aEvent.Source.is(), "OAccessibleContextHelper::NotifyAccessibleEvent: invalid creator!" );
aEvent.EventId = _nEventId;
aEvent.OldValue = _rOldValue;
@@ -352,6 +352,9 @@ namespace comphelper
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.5 2002/04/30 07:42:27 hr
+ * #65293#: removed not needed vcl/svapp.hxx includes to reduce dependencies
+ *
* Revision 1.4 2002/04/26 14:24:28 fs
* #98750# +getAccessibleCreator / use the creator (XAccessible) as event source
*