diff options
-rw-r--r-- | svx/source/table/tablecontroller.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svx/source/table/tablecontroller.cxx b/svx/source/table/tablecontroller.cxx index 3a60e5c773ac..8ef76acd377e 100644 --- a/svx/source/table/tablecontroller.cxx +++ b/svx/source/table/tablecontroller.cxx @@ -827,6 +827,7 @@ void SvxTableController::onDelete( sal_uInt16 nSId ) { Reference< XTableColumns > xCols( mxTable->getColumns() ); xCols->removeByIndex( aStart.mnCol, nRemovedColumns ); + EditCell(aStart, nullptr, TblAction::NONE); } break; } @@ -842,6 +843,7 @@ void SvxTableController::onDelete( sal_uInt16 nSId ) { Reference< XTableRows > xRows( mxTable->getRows() ); xRows->removeByIndex( aStart.mnRow, nRemovedRows ); + EditCell(aStart, nullptr, TblAction::NONE); } break; } |