From 8e203f58bc275df13e66e733bf0e43970079abed Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 22 Oct 2015 13:13:31 +0100 Subject: crashtesting+ubsan: kde170880-1.html ANISTOPINSIDE cast to StartInsideItem presumably this is a simple typo and it should be ANISTARTINSIDE Change-Id: I05c6cfb857955c7d418e3997845dd0ef6d2bff36 --- svx/source/svdraw/svdotextdecomposition.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx index 9533e9e9e76d..950617c6fe3b 100644 --- a/svx/source/svdraw/svdotextdecomposition.cxx +++ b/svx/source/svdraw/svdotextdecomposition.cxx @@ -1216,7 +1216,7 @@ void SdrTextObj::impGetBlinkTextTiming(drawinglayer::animation::AnimationEntryLi void impCreateScrollTiming(const SfxItemSet& rSet, drawinglayer::animation::AnimationEntryList& rAnimList, bool bForward, double fTimeFullPath, double fFrequency) { bool bVisisbleWhenStopped(static_cast(rSet.Get(SDRATTR_TEXT_ANISTOPINSIDE)).GetValue()); - bool bVisisbleWhenStarted(static_cast(rSet.Get(SDRATTR_TEXT_ANISTOPINSIDE )).GetValue()); + bool bVisisbleWhenStarted(static_cast(rSet.Get(SDRATTR_TEXT_ANISTARTINSIDE)).GetValue()); const sal_uInt32 nRepeat(static_cast(rSet.Get(SDRATTR_TEXT_ANICOUNT)).GetValue()); if(bVisisbleWhenStarted) @@ -1255,7 +1255,7 @@ void impCreateAlternateTiming(const SfxItemSet& rSet, drawinglayer::animation::A const double fStartPosition(bForward ? fRelativeTextLength : 1.0 - fRelativeTextLength); const double fEndPosition(bForward ? 1.0 - fRelativeTextLength : fRelativeTextLength); - bool bVisisbleWhenStarted(static_cast(rSet.Get(SDRATTR_TEXT_ANISTOPINSIDE )).GetValue()); + bool bVisisbleWhenStarted(static_cast(rSet.Get(SDRATTR_TEXT_ANISTARTINSIDE)).GetValue()); const sal_uInt32 nRepeat(static_cast(rSet.Get(SDRATTR_TEXT_ANICOUNT)).GetValue()); if(!bVisisbleWhenStarted) -- cgit