summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-04-18 22:03:07 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-04-19 08:05:06 +0000
commit958cb598912b534a8bf7fa7a3bb657b65e4d13ed (patch)
tree5aaf40339ea53e1e59a893d8e3f91af0574dca64 /sc
parentf71ba9fb64ae116236305bcf1b3f7054f365fd3c (diff)
Resolves: tdf#99322 re-establish group area listeners after update reference
Change-Id: If2ec5f938c7278ce817de3d89dc84cc0584507ac (cherry picked from commit 44e2da58226448c5617eac08ca2ae3d9a9ad2afa) Reviewed-on: https://gerrit.libreoffice.org/24225 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/document.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 69059b5338c4..843de154af07 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -2595,6 +2595,14 @@ void ScDocument::CopyBlockFromClip(
SetInsertingFromOtherDoc( true);
aRefCxt.meMode = URM_MOVE;
UpdateReference(aRefCxt, rCxt.getUndoDoc(), false);
+
+ // For URM_MOVE group listeners may have been removed,
+ // re-establish them.
+ /* TODO: actually only those in
+ * sc::RefUpdateContext::maRegroupCols are affected,
+ * come up with a start listeners that takes such. */
+ StartNeededListeners();
+
SetInsertingFromOtherDoc( bOldInserting);
}
}