Clean up OContainerListenerAdapter
* elide OContainerListenerAdapter_BASE * no need for protected members Change-Id: I70095dadc4b1f42f04c8ea76b2236bf99a226da9
This commit is contained in:
@@ -216,7 +216,6 @@ merge comphelper::NameContainerImpl with comphelper::NameContainer
|
|||||||
merge comphelper::OAccessibleContextHelper with comphelper::OCommonAccessibleComponent
|
merge comphelper::OAccessibleContextHelper with comphelper::OCommonAccessibleComponent
|
||||||
merge comphelper::OAnyEnumeration_BASE with comphelper::OAnyEnumeration
|
merge comphelper::OAnyEnumeration_BASE with comphelper::OAnyEnumeration
|
||||||
merge comphelper::OComponentProxyAggregation with comphelper::OAccessibleWrapper
|
merge comphelper::OComponentProxyAggregation with comphelper::OAccessibleWrapper
|
||||||
merge comphelper::OContainerListenerAdapter_BASE with comphelper::OContainerListenerAdapter
|
|
||||||
merge comphelper::OProxyAggregation with comphelper::OComponentProxyAggregationHelper
|
merge comphelper::OProxyAggregation with comphelper::OComponentProxyAggregationHelper
|
||||||
merge comphelper::OSeekableInputWrapper_BASE with comphelper::OSeekableInputWrapper
|
merge comphelper::OSeekableInputWrapper_BASE with comphelper::OSeekableInputWrapper
|
||||||
merge comphelper::PropertySetInfo_BASE with comphelper::PropertySetInfo
|
merge comphelper::PropertySetInfo_BASE with comphelper::PropertySetInfo
|
||||||
|
@@ -67,17 +67,12 @@ namespace comphelper
|
|||||||
void setAdapter(OContainerListenerAdapter* _pAdapter);
|
void setAdapter(OContainerListenerAdapter* _pAdapter);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
//= OContainerListenerAdapter
|
|
||||||
class SAL_DLLPUBLIC_TEMPLATE OContainerListenerAdapter_BASE
|
|
||||||
: public cppu::WeakImplHelper<css::container::XContainerListener> {};
|
|
||||||
|
|
||||||
class COMPHELPER_DLLPUBLIC OContainerListenerAdapter
|
class COMPHELPER_DLLPUBLIC OContainerListenerAdapter
|
||||||
: public OContainerListenerAdapter_BASE
|
: public cppu::WeakImplHelper<css::container::XContainerListener>
|
||||||
{
|
{
|
||||||
friend class OContainerListener;
|
friend class OContainerListener;
|
||||||
|
|
||||||
protected:
|
private:
|
||||||
css::uno::Reference< css::container::XContainer >
|
css::uno::Reference< css::container::XContainer >
|
||||||
m_xContainer;
|
m_xContainer;
|
||||||
OContainerListener* m_pListener;
|
OContainerListener* m_pListener;
|
||||||
|
Reference in New Issue
Block a user