Kaydet (Commit) 5af87330 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Avoid a default parameter that was under-used anyway (loplugin:defaultparams)

Change-Id: I845e2ceab1cf35a021eea23632291111c8f43362
üst 9125dbaf
......@@ -254,7 +254,7 @@ public:
static void AssertPageFlys( SwPageFrm * );
/// Invalidate all Content, Size or PrtArea
void InvalidateAllContent( sal_uInt8 nInvalidate = INV_SIZE );
void InvalidateAllContent( sal_uInt8 nInvalidate );
/**
* Invalidate/re-calculate the position of all floating
......
......@@ -99,7 +99,7 @@ namespace sw
pXDoc->GetDocShell()->GetWrtShell()->StartAction();
Rectangle aRect( 0, 0, 26000, 21000 );
pXDoc->GetDocShell()->SetVisArea( aRect );
pLayout->InvalidateAllContent( );
pLayout->InvalidateAllContent( INV_SIZE );
pXDoc->GetDocShell()->GetWrtShell()->EndAction();
// Dump the layout XML into the XOutputStream
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment