diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:47:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:47:18 +0200 |
commit | 666f732412e739fda6d0578752156dbb11931a2f (patch) | |
tree | 3648da7df4cdc765741854f2d95d260d933c22c0 /vcl/source/edit | |
parent | 6017a8ee741ca8b192dda2fe2f853392bbf26614 (diff) |
loplugin:defaultparams
Change-Id: I3e5ee77b51eb8e1207d3f95e6a1d9d8272532ba6
Diffstat (limited to 'vcl/source/edit')
-rw-r--r-- | vcl/source/edit/texteng.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/edit/texteng.cxx b/vcl/source/edit/texteng.cxx index 316ee8de8ee1..c65b38d4f261 100644 --- a/vcl/source/edit/texteng.cxx +++ b/vcl/source/edit/texteng.cxx @@ -2589,7 +2589,7 @@ void TextEngine::RemoveAttribs( sal_uInt32 nPara, bool bIdleFormatAndUpdate ) if ( bIdleFormatAndUpdate ) IdleFormatAndUpdate( NULL, 0xFFFF ); else - FormatAndUpdate( NULL ); + FormatAndUpdate(); } } } @@ -2613,7 +2613,7 @@ void TextEngine::RemoveAttribs( sal_uInt32 nPara, sal_uInt16 nWhich, bool bIdleF if(bIdleFormatAndUpdate) IdleFormatAndUpdate( NULL, 0xFFFF ); else - FormatAndUpdate( NULL ); + FormatAndUpdate(); } } } @@ -2637,7 +2637,7 @@ void TextEngine::RemoveAttrib( sal_uInt32 nPara, const TextCharAttrib& rAttrib ) TEParaPortion* pTEParaPortion = mpTEParaPortions->GetObject( nPara ); pTEParaPortion->MarkSelectionInvalid( 0, pNode->GetText().getLength() ); mbFormatted = false; - FormatAndUpdate( NULL ); + FormatAndUpdate(); } } } @@ -2668,7 +2668,7 @@ void TextEngine::SetAttrib( const TextAttrib& rAttr, sal_uInt32 nPara, sal_Int32 if ( bIdleFormatAndUpdate ) IdleFormatAndUpdate( NULL, 0xFFFF ); else - FormatAndUpdate( NULL ); + FormatAndUpdate(); } } |