summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@libreoffice.org>2021-08-22 14:24:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-08-23 21:54:40 +0200
commit0ce90e777721f11048d366b58e760b60aabf2eaa (patch)
tree21157f938ebc689bb41b77eb4e8f2b4dc6ee51e4 /include
parent6d276cd03089219c3ad099d4683ecc0c85bd0468 (diff)
comphelper : remove useless OContextHelper_Impl
Change-Id: I41fc571695a64b432d6abf4979b99ef141a12b28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120842 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/accessiblecontexthelper.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/accessiblecontexthelper.hxx b/include/comphelper/accessiblecontexthelper.hxx
index e22dacbe6411..dc367fbe1703 100644
--- a/include/comphelper/accessiblecontexthelper.hxx
+++ b/include/comphelper/accessiblecontexthelper.hxx
@@ -24,9 +24,9 @@
#include <cppuhelper/basemutex.hxx>
#include <com/sun/star/accessibility/XAccessibleContext2.hpp>
#include <com/sun/star/accessibility/XAccessibleEventBroadcaster.hpp>
+#include <comphelper/accessibleeventnotifier.hxx>
#include <comphelper/comphelperdllapi.h>
#include <comphelper/solarmutex.hxx>
-#include <memory>
namespace comphelper
@@ -36,7 +36,6 @@ namespace comphelper
//= OAccessibleContextHelper
- class OContextHelper_Impl;
typedef ::cppu::WeakAggComponentImplHelper2 < css::accessibility::XAccessibleContext2,
css::accessibility::XAccessibleEventBroadcaster
> OAccessibleContextHelper_Base;
@@ -49,7 +48,8 @@ namespace comphelper
{
friend class OContextEntryGuard;
private:
- std::unique_ptr<OContextHelper_Impl> m_pImpl;
+ css::uno::WeakReference< css::accessibility::XAccessible > m_aCreator; // the XAccessible which created our XAccessibleContext
+ AccessibleEventNotifier::TClientId m_nClientId;
protected:
virtual ~OAccessibleContextHelper( ) override;