diff options
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; |