diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-11-04 14:45:32 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-11-04 17:54:28 +0100 |
commit | 393fa77d278eae7a72a8dc78f81082bbdd63a656 (patch) | |
tree | 91da8f3d8f332b328f5b37cc8cbad610c635a5f8 /sd | |
parent | 33157a11536da2704f036aeb9ab559b04419cf77 (diff) |
Replace lists by vectors in animation parts (sd/animations)
Change-Id: Ie5306041e5cde5617e460ae4d98861e8d26e389d
Reviewed-on: https://gerrit.libreoffice.org/44297
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/animations.hxx | 2 | ||||
-rw-r--r-- | sd/source/core/CustomAnimationEffect.cxx | 2 | ||||
-rw-r--r-- | sd/source/filter/ppt/pptinanimations.hxx | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/sd/inc/animations.hxx b/sd/inc/animations.hxx index bffe1877fa25..bb7f61339a95 100644 --- a/sd/inc/animations.hxx +++ b/sd/inc/animations.hxx @@ -38,8 +38,6 @@ struct AfterEffectNode : mxNode( xNode ), mxMaster( xMaster ), mbOnNextEffect( bOnNextEffect ) {} }; -typedef std::list< AfterEffectNode > AfterEffectNodeList; - /** inserts the animation node in the given AfterEffectNode at the correct position in the timing hierarchy of its master */ SD_DLLPUBLIC void stl_process_after_effect_node_func(AfterEffectNode const & rNode); diff --git a/sd/source/core/CustomAnimationEffect.cxx b/sd/source/core/CustomAnimationEffect.cxx index 1d0975a4f2e0..33c7f895025d 100644 --- a/sd/source/core/CustomAnimationEffect.cxx +++ b/sd/source/core/CustomAnimationEffect.cxx @@ -1822,7 +1822,7 @@ void EffectSequenceHelper::implRebuild() EffectSequence::iterator aEnd( maEffects.end() ); if( aIter != aEnd ) { - AfterEffectNodeList aAfterEffects; + std::vector< sd::AfterEffectNode > aAfterEffects; CustomAnimationEffectPtr pEffect = (*aIter++); diff --git a/sd/source/filter/ppt/pptinanimations.hxx b/sd/source/filter/ppt/pptinanimations.hxx index 77e599a72833..5cbb40592862 100644 --- a/sd/source/filter/ppt/pptinanimations.hxx +++ b/sd/source/filter/ppt/pptinanimations.hxx @@ -89,7 +89,7 @@ private: ImplSdPPTImport* mpPPTImport; SvStream& mrStCtrl; - sd::AfterEffectNodeList maAfterEffectNodes; + std::vector< sd::AfterEffectNode > maAfterEffectNodes; #ifdef DBG_ANIM_LOG FILE * mpFile; |