diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-08 10:21:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-08 11:47:19 +0200 |
commit | 0f8a30318695447e205b17fb0af06362ab890bc3 (patch) | |
tree | 7d31a0475a732772dd0967ba7be29868e24a09ab /sw/source/uibase/shells/basesh.cxx | |
parent | ac1c3f2ab68a17b6508901bf9b5abdad618158a6 (diff) |
loplugin:constantparam in sw
Change-Id: Ibae4cac28e6ff52298c804519f683017729c07a5
Diffstat (limited to 'sw/source/uibase/shells/basesh.cxx')
-rw-r--r-- | sw/source/uibase/shells/basesh.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/shells/basesh.cxx b/sw/source/uibase/shells/basesh.cxx index 3bb4368b666c..c40a2eaa4ba3 100644 --- a/sw/source/uibase/shells/basesh.cxx +++ b/sw/source/uibase/shells/basesh.cxx @@ -893,7 +893,7 @@ void SwBaseShell::Execute(SfxRequest &rReq) rSh.TableToText( cDelim ); else { - bInserted = rSh.TextToTable( aInsTableOpts, cDelim, text::HoriOrientation::FULL, pTAFormat ); + bInserted = rSh.TextToTable( aInsTableOpts, cDelim, pTAFormat ); } rSh.EnterStdMode(); @@ -2684,7 +2684,7 @@ void SwBaseShell::InsertTable( SfxRequest& _rRequest ) if( rSh.HasSelection() ) rSh.DelRight(); - rSh.InsertTable( aInsTableOpts, nRows, nCols, text::HoriOrientation::FULL, pTAFormat ); + rSh.InsertTable( aInsTableOpts, nRows, nCols, pTAFormat ); rSh.MoveTable( GotoPrevTable, fnTableStart ); if( !aTableName.isEmpty() && !rSh.GetTableStyle( aTableName ) ) |