diff options
Diffstat (limited to 'sw/source/core/text/porfld.cxx')
-rw-r--r-- | sw/source/core/text/porfld.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/porfld.cxx b/sw/source/core/text/porfld.cxx index b06affbf068e..4f24e63b33f0 100644 --- a/sw/source/core/text/porfld.cxx +++ b/sw/source/core/text/porfld.cxx @@ -87,7 +87,7 @@ SwFieldPortion::SwFieldPortion( const SwFieldPortion& rField ) : SwExpandPortion( rField ) , aExpand( rField.GetExp() ) , nNextOffset( rField.GetNextOffset() ) - , nNextScriptChg( rField.GetNextScriptChg() ) + , nNextScriptChg( rField.nNextScriptChg ) , nViewWidth( rField.nViewWidth ) , bFollow( rField.IsFollow() ) , bLeft( rField.IsLeft() ) @@ -839,7 +839,7 @@ bool SwGrfNumPortion::Format( SwTextFormatInfo &rInf ) if( bFly ) { SetLen( 0 ); - SetNoPaint( true ); + bNoPaint = true; rInf.SetNumDone( false ); return true; } @@ -881,7 +881,7 @@ bool SwGrfNumPortion::Format( SwTextFormatInfo &rInf ) */ void SwGrfNumPortion::Paint( const SwTextPaintInfo &rInf ) const { - if( DontPaint() ) + if( bNoPaint ) return; if ( IsHide() && rInf.GetParaPortion() && rInf.GetParaPortion()->GetNext() ) { |