summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2018-03-25 15:23:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-26 09:30:25 +0200
commitd312ff2b52c0ea2e2864518a36f6b432653c8297 (patch)
tree34d1b98329a8a56b289d82299534d4120485f1ad /sc
parent42af2f3b2ebd6c559e92e487b9e19ab1e9cd6e33 (diff)
tdf#112997 multiple animated gif only one frame
Not sure what the problem is, but using a vector and just making sure we insert into the right spot for the sorting fixes it. Change-Id: I11c08e08a14c98ba7eb6a5d925c75bab891ecf63 Reviewed-on: https://gerrit.libreoffice.org/51829 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/view/overlayobject.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/overlayobject.cxx b/sc/source/ui/view/overlayobject.cxx
index b8aff2502ddb..ad5f34d95846 100644
--- a/sc/source/ui/view/overlayobject.cxx
+++ b/sc/source/ui/view/overlayobject.cxx
@@ -53,7 +53,7 @@ void ScOverlayDashedBorder::Trigger(sal_uInt32 nTime)
{
SetTime(nTime + DASH_UPDATE_INTERVAL);
mbToggle = !mbToggle;
- pMgr->InsertEvent(this);
+ pMgr->InsertEvent(*this);
objectChange();
}
}