diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-09-28 03:55:01 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-09-28 21:44:51 +0000 |
commit | f6f213bed507d1d7547f6098a67b6e460d46bce6 (patch) | |
tree | b81b9bb92c18072d6e2165dd1eb7864412c50237 | |
parent | 80942ca029a632beb48d0e1baf37e28a355c7dd9 (diff) |
tdf#99386, broadcast that cell content changed after merge cells undo/redo
Change-Id: Idf41d1b07e26af66d9eefd18e5d5b582edc205e9
Reviewed-on: https://gerrit.libreoffice.org/29370
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r-- | sc/source/ui/undo/undoblk3.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/undo/undoblk3.cxx b/sc/source/ui/undo/undoblk3.cxx index dc2d9e2fb015..7d1f2d97eb82 100644 --- a/sc/source/ui/undo/undoblk3.cxx +++ b/sc/source/ui/undo/undoblk3.cxx @@ -727,6 +727,8 @@ void ScUndoMerge::DoChange( bool bUndo ) const if (!bDidPaint) ScUndoUtil::PaintMore(pDocShell, aRange); + + rDoc.BroadcastCells(aRange, SC_HINT_DATACHANGED); } ShowTable(aCurRange); |