diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 15:10:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-29 18:29:59 +0200 |
commit | e6c08b6b302b00cc55e9963ce47d6cc2416049a6 (patch) | |
tree | b9120fd4dd8e53a415fee0f2305699dc3f111a4d /editeng | |
parent | 91dd52bc54f59d9362f10988326839f8e7553e65 (diff) |
Remove unnecessary STATIC_LINK macro
Change-Id: I4788824667c8e0d1d4e0717b7ae7737bb0fd2c90
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/numitem.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx index b3fc0d8511d3..13073d5d74b9 100644 --- a/editeng/source/items/numitem.cxx +++ b/editeng/source/items/numitem.cxx @@ -338,7 +338,7 @@ SvxNumberFormat& SvxNumberFormat::operator=( const SvxNumberFormat& rFormat ) if(rFormat.pGraphicBrush) { pGraphicBrush = new SvxBrushItem(*rFormat.pGraphicBrush); - pGraphicBrush->SetDoneLink( STATIC_LINK( this, SvxNumberFormat, GraphicArrived) ); + pGraphicBrush->SetDoneLink( LINK( this, SvxNumberFormat, GraphicArrived) ); } DELETEZ(pBulletFont); if(rFormat.pBulletFont) @@ -402,7 +402,7 @@ void SvxNumberFormat::SetGraphicBrush( const SvxBrushItem* pBrushItem, { delete pGraphicBrush; pGraphicBrush = static_cast<SvxBrushItem*>(pBrushItem->Clone()); - pGraphicBrush->SetDoneLink( STATIC_LINK( this, SvxNumberFormat, GraphicArrived) ); + pGraphicBrush->SetDoneLink( LINK( this, SvxNumberFormat, GraphicArrived) ); } if(pOrient) @@ -422,7 +422,7 @@ void SvxNumberFormat::SetGraphic( const OUString& rName ) delete pGraphicBrush; pGraphicBrush = new SvxBrushItem( rName, "", GPOS_AREA, 0 ); - pGraphicBrush->SetDoneLink( STATIC_LINK( this, SvxNumberFormat, GraphicArrived) ); + pGraphicBrush->SetDoneLink( LINK( this, SvxNumberFormat, GraphicArrived) ); if( eVertOrient == text::VertOrientation::NONE ) eVertOrient = text::VertOrientation::TOP; |