diff options
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/numitem.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx index 2bf5ba832b70..c78822484e39 100644 --- a/editeng/source/items/numitem.cxx +++ b/editeng/source/items/numitem.cxx @@ -484,16 +484,16 @@ void SvxNumberFormat::SetIndentAt( const long nIndentAt ) mnIndentAt = nIndentAt; } -IMPL_STATIC_LINK( SvxNumberFormat, GraphicArrived, void *, EMPTYARG ) +IMPL_LINK_NOARG( SvxNumberFormat, GraphicArrived ) { // if necessary, set the GrfSize: - if( !pThis->aGraphicSize.Width() || !pThis->aGraphicSize.Height() ) + if( !aGraphicSize.Width() || !aGraphicSize.Height() ) { - const Graphic* pGrf = pThis->pGraphicBrush->GetGraphic(); + const Graphic* pGrf = pGraphicBrush->GetGraphic(); if( pGrf ) - pThis->aGraphicSize = SvxNumberFormat::GetGraphicSizeMM100( pGrf ); + aGraphicSize = SvxNumberFormat::GetGraphicSizeMM100( pGrf ); } - pThis->NotifyGraphicArrived(); + NotifyGraphicArrived(); return 0; } |