diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-03-28 15:35:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-28 15:35:43 +0100 |
commit | 048e64e71fad3187d2165ed6eb0a42fdcd6e0caa (patch) | |
tree | 96f3ec9351c310753d0d23e98dce4ca1b52745dc /comphelper/source | |
parent | 38e5096b1c3d21a2b4d7588f3c846f1f45a7a3e0 (diff) |
Drop redundant typedef
Change-Id: I13f1858babb1fb2b4120bcbf0e2e04a2a1f4bf88
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/accessiblewrapper.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/misc/proxyaggregation.cxx | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/comphelper/source/misc/accessiblewrapper.cxx b/comphelper/source/misc/accessiblewrapper.cxx index 897f0fd771c3..4996cb2d5d84 100644 --- a/comphelper/source/misc/accessiblewrapper.cxx +++ b/comphelper/source/misc/accessiblewrapper.cxx @@ -663,7 +663,7 @@ namespace comphelper void SAL_CALL OAccessibleContextWrapper::dispose() throw( RuntimeException ) { // simply disambiguate - OComponentProxyAggregation_CBase::dispose(); + WeakComponentImplHelperBase::dispose(); } //............................................................................. diff --git a/comphelper/source/misc/proxyaggregation.cxx b/comphelper/source/misc/proxyaggregation.cxx index 9a19cf5c99d0..86d0082fbb2f 100644 --- a/comphelper/source/misc/proxyaggregation.cxx +++ b/comphelper/source/misc/proxyaggregation.cxx @@ -191,7 +191,7 @@ namespace comphelper //------------------------------------------------------------------------- OComponentProxyAggregation::OComponentProxyAggregation( const Reference< XComponentContext >& _rxContext, const Reference< XComponent >& _rxComponent ) - :OComponentProxyAggregation_CBase( m_aMutex ) + :WeakComponentImplHelperBase( m_aMutex ) ,OComponentProxyAggregationHelper( _rxContext, rBHelper ) { OSL_ENSURE( _rxComponent.is(), "OComponentProxyAggregation::OComponentProxyAggregation: accessible is no XComponent!" ); @@ -206,7 +206,7 @@ namespace comphelper } //------------------------------------------------------------------------- - IMPLEMENT_FORWARD_XINTERFACE2( OComponentProxyAggregation, OComponentProxyAggregation_CBase, OComponentProxyAggregationHelper ) + IMPLEMENT_FORWARD_XINTERFACE2( OComponentProxyAggregation, WeakComponentImplHelperBase, OComponentProxyAggregationHelper ) //------------------------------------------------------------------------- IMPLEMENT_GET_IMPLEMENTATION_ID( OComponentProxyAggregation ) @@ -216,7 +216,7 @@ namespace comphelper { Sequence< Type > aTypes( OComponentProxyAggregationHelper::getTypes() ); - // append XComponent, coming from OComponentProxyAggregation_CBase + // append XComponent, coming from WeakComponentImplHelperBase sal_Int32 nLen = aTypes.getLength(); aTypes.realloc( nLen + 1 ); aTypes[ nLen ] = ::getCppuType( static_cast< Reference< XComponent >* >( NULL ) ); @@ -256,7 +256,7 @@ namespace comphelper void SAL_CALL OComponentProxyAggregation::dispose() throw( RuntimeException ) { // simply disambiguate - OComponentProxyAggregation_CBase::dispose(); + WeakComponentImplHelperBase::dispose(); } |