diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-06-24 10:29:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-06-24 10:29:48 +0200 |
commit | ed49818ab0af63f3246e8c27ba87aef4d9fbb829 (patch) | |
tree | 3cf87cb3c1c8d3d68933164dd371781b6b7c6a4c /include/comphelper/containermultiplexer.hxx | |
parent | 29bea29ec1a56255455f855e2b29321553cb524c (diff) |
Clean up OContainerListenerAdapter
* elide OContainerListenerAdapter_BASE
* no need for protected members
Change-Id: I70095dadc4b1f42f04c8ea76b2236bf99a226da9
Diffstat (limited to 'include/comphelper/containermultiplexer.hxx')
-rw-r--r-- | include/comphelper/containermultiplexer.hxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/comphelper/containermultiplexer.hxx b/include/comphelper/containermultiplexer.hxx index cfc76a3b8fe2..fda66f07c96b 100644 --- a/include/comphelper/containermultiplexer.hxx +++ b/include/comphelper/containermultiplexer.hxx @@ -67,17 +67,12 @@ namespace comphelper void setAdapter(OContainerListenerAdapter* _pAdapter); }; - - //= OContainerListenerAdapter - class SAL_DLLPUBLIC_TEMPLATE OContainerListenerAdapter_BASE - : public cppu::WeakImplHelper<css::container::XContainerListener> {}; - class COMPHELPER_DLLPUBLIC OContainerListenerAdapter - : public OContainerListenerAdapter_BASE + : public cppu::WeakImplHelper<css::container::XContainerListener> { friend class OContainerListener; - protected: + private: css::uno::Reference< css::container::XContainer > m_xContainer; OContainerListener* m_pListener; |