Simplify code

Change-Id: I2ac0564a5a6714111abdcff48edff070d75892b7
This commit is contained in:
Stephan Bergmann
2016-02-10 08:04:22 +01:00
parent e4e0eb0dff
commit de907bf54d
2 changed files with 3 additions and 17 deletions

View File

@@ -705,15 +705,7 @@ namespace accessibility
if( !aChild.is() )
{
// there is no hard reference available, create object then
AccessibleImageBullet* pChild = new AccessibleImageBullet( uno::Reference< XAccessible >( this ) );
uno::Reference< XAccessible > xChild( static_cast< ::cppu::OWeakObject* > (pChild), uno::UNO_QUERY );
if( !xChild.is() )
throw uno::RuntimeException("Child creation failed",
uno::Reference< uno::XInterface >
( static_cast< ::cppu::OWeakObject* > (this) ) );
aChild = pChild;
aChild = new AccessibleImageBullet(this);
aChild->SetEditSource( &GetEditSource() );
aChild->SetParagraphIndex( GetParagraphIndex() );

View File

@@ -164,17 +164,11 @@ namespace accessibility
{
// there is no hard reference available, create object then
// #i27138#
AccessibleEditableTextPara* pChild = new AccessibleEditableTextPara( xFrontEnd, this );
uno::Reference< XAccessible > xChild( static_cast< ::cppu::OWeakObject* > (pChild), uno::UNO_QUERY );
if( !xChild.is() )
throw uno::RuntimeException("Child creation failed", xFrontEnd);
aChild = pChild;
aChild = new AccessibleEditableTextPara(xFrontEnd, this);
InitChild( *aChild, rEditSource, nChild, nParagraphIndex );
maChildren[ nParagraphIndex ] = WeakChild( aChild, pChild->getBounds() );
maChildren[ nParagraphIndex ] = WeakChild( aChild, aChild->getBounds() );
}
return Child( aChild.get(), GetChild( nParagraphIndex ).second );