diff options
author | Jim Raykowski <raykowj@gmail.com> | 2018-04-28 22:20:51 -0800 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2018-05-21 22:26:37 +0200 |
commit | 137c38a1ba01c51c421f695e1558d2c1499c6627 (patch) | |
tree | 3d92e2b4331a29ae5f5ad1dabffdee0cc7bbe8fc | |
parent | 9913458256effd34ab24fca166c37c0184a91f14 (diff) |
tdf#117189 Fix table InsertRow redo
Change-Id: I92ce18105550d9514b18b81080cfd0c19dfe648b
Reviewed-on: https://gerrit.libreoffice.org/53618
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
-rw-r--r-- | sw/source/core/doc/tblrwcl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx index 0c589270ce24..c33b005e9a89 100644 --- a/sw/source/core/doc/tblrwcl.cxx +++ b/sw/source/core/doc/tblrwcl.cxx @@ -634,7 +634,7 @@ bool SwTable::InsertRow_( SwDoc* pDoc, const SwSelBoxes& rBoxes, pPCD->AddRowCols( *this, rBoxes, nCnt, bBehind ); pDoc->UpdateCharts( GetFrameFormat()->GetName() ); - pDoc->GetDocShell()->GetFEShell()->UpdateTableStyleFormatting(); + pDoc->GetDocShell()->GetFEShell()->UpdateTableStyleFormatting( pTableNd ); return true; } |