diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2018-03-25 15:23:47 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-04 11:03:43 +0200 |
commit | 09ba4f15ec88b820fed66be339170da2fbbf11dd (patch) | |
tree | e5c58ae6a64be36b9b9f081cbed8c74429a9319a /sc | |
parent | cba73f04699592c7038156f91ed92be026ed2536 (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/52010
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/overlayobject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/overlayobject.cxx b/sc/source/ui/view/overlayobject.cxx index cc688f4301e0..9aa60e932f1f 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(); } } |