summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2018-03-25 15:23:47 +0200
committerAndras Timar <andras.timar@collabora.com>2018-04-12 10:51:32 +0200
commitc02db5b88de76c49988d1cd0fd7738f8d3e7e37a (patch)
treeb2194d55d53bbb41d2e25bd030538ba94f4d55cf /sc
parent749dc3060ff291e4c02731f18dddf5916e898896 (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> (cherry picked from commit d312ff2b52c0ea2e2864518a36f6b432653c8297) Reviewed-on: https://gerrit.libreoffice.org/52009 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit 2439b95b4d34e519aa2a5617a7f1e194b7864222)
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();
}
}