diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-07-05 21:08:09 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-26 15:39:37 +0000 |
commit | aa06651526d47d9e102fbffc6e3f17da2a7ec160 (patch) | |
tree | 3ed3163d4a642bc4db7a32b43192b657766e89e0 | |
parent | eee2704a66075793d49a6972babe9444c3df7a87 (diff) |
Related: fdo#51247 bandaid to not crash
Change-Id: I1f98a6a1e5ede6fcd9a3570788969edcb251384b
(cherry picked from commit 63f00d37a20169743d9709977b382c379560ef9e)
Reviewed-on: https://gerrit.libreoffice.org/918
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r-- | sd/source/core/CustomAnimationEffect.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sd/source/core/CustomAnimationEffect.cxx b/sd/source/core/CustomAnimationEffect.cxx index 16756a55b13f..2ed611589722 100644 --- a/sd/source/core/CustomAnimationEffect.cxx +++ b/sd/source/core/CustomAnimationEffect.cxx @@ -2819,6 +2819,11 @@ void EffectSequenceHelper::setAnimateForm( CustomAnimationTextGroupPtr pTextGrou EffectSequence aEffects( pTextGroup->maEffects ); pTextGroup->reset(); + SAL_WARN_IF(aEffects.empty(), "sd", "EffectSequenceHelper::setAnimateForm effects empty" ); + + if (aEffects.empty()) + return; + EffectSequence::iterator aIter( aEffects.begin() ); const EffectSequence::iterator aEnd( aEffects.end() ); |