Kaydet (Commit) 048e64e7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Drop redundant typedef

Change-Id: I13f1858babb1fb2b4120bcbf0e2e04a2a1f4bf88
üst 38e5096b
......@@ -175,10 +175,8 @@ namespace comphelper
//=========================================================================
//= OComponentProxyAggregation
//=========================================================================
typedef ::cppu::WeakComponentImplHelperBase OComponentProxyAggregation_CBase;
class COMPHELPER_DLLPUBLIC OComponentProxyAggregation :public OBaseMutex
,public OComponentProxyAggregation_CBase
,public cppu::WeakComponentImplHelperBase
,public OComponentProxyAggregationHelper
{
protected:
......
......@@ -663,7 +663,7 @@ namespace comphelper
void SAL_CALL OAccessibleContextWrapper::dispose() throw( RuntimeException )
{
// simply disambiguate
OComponentProxyAggregation_CBase::dispose();
WeakComponentImplHelperBase::dispose();
}
//.............................................................................
......
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment