summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/pptexanimations.cxx8
-rw-r--r--sd/source/filter/eppt/pptexanimations.hxx4
-rw-r--r--sd/source/ui/animations/CustomAnimationList.cxx4
3 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/filter/eppt/pptexanimations.cxx b/sd/source/filter/eppt/pptexanimations.cxx
index 40e00edfff25..65c8ba385d31 100644
--- a/sd/source/filter/eppt/pptexanimations.cxx
+++ b/sd/source/filter/eppt/pptexanimations.cxx
@@ -408,8 +408,8 @@ void AnimationExporter::processAfterEffectNodes( const Reference< XAnimationNode
bool AnimationExporter::isAfterEffectNode( const Reference< XAnimationNode >& xNode ) const
{
- const std::list< AfterEffectNodePtr >::const_iterator aEnd( maAfterEffectNodes.end() );
- for (std::list< AfterEffectNodePtr >::const_iterator aIter( maAfterEffectNodes.begin() );
+ const std::vector< AfterEffectNodePtr >::const_iterator aEnd( maAfterEffectNodes.end() );
+ for (std::vector< AfterEffectNodePtr >::const_iterator aIter( maAfterEffectNodes.begin() );
aIter != aEnd ; ++aIter)
{
if( (*aIter)->mxNode == xNode )
@@ -420,8 +420,8 @@ bool AnimationExporter::isAfterEffectNode( const Reference< XAnimationNode >& xN
bool AnimationExporter::hasAfterEffectNode( const Reference< XAnimationNode >& xNode, Reference< XAnimationNode >& xAfterEffectNode ) const
{
- const std::list< AfterEffectNodePtr >::const_iterator aEnd( maAfterEffectNodes.end() );
- for (std::list< AfterEffectNodePtr >::const_iterator aIter( maAfterEffectNodes.begin() );
+ const std::vector< AfterEffectNodePtr >::const_iterator aEnd( maAfterEffectNodes.end() );
+ for (std::vector< AfterEffectNodePtr >::const_iterator aIter( maAfterEffectNodes.begin() );
aIter != aEnd ; ++aIter)
{
if( (*aIter)->mxMaster == xNode )
diff --git a/sd/source/filter/eppt/pptexanimations.hxx b/sd/source/filter/eppt/pptexanimations.hxx
index 05583164b2d5..a3b12f968cb9 100644
--- a/sd/source/filter/eppt/pptexanimations.hxx
+++ b/sd/source/filter/eppt/pptexanimations.hxx
@@ -33,7 +33,7 @@
#include <memory>
-#include <list>
+#include <vector>
class SvStream;
@@ -107,7 +107,7 @@ class AnimationExporter
static css::uno::Reference< css::animations::XAnimationNode > createAfterEffectNodeClone( const css::uno::Reference< css::animations::XAnimationNode >& xNode );
- std::list< AfterEffectNodePtr > maAfterEffectNodes;
+ std::vector< AfterEffectNodePtr > maAfterEffectNodes;
public:
AnimationExporter( const EscherSolverContainer& rSolverContainer, ppt::ExSoundCollection& rExSoundCollection );
diff --git a/sd/source/ui/animations/CustomAnimationList.cxx b/sd/source/ui/animations/CustomAnimationList.cxx
index f02a68de93ae..bf13da48983c 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -556,8 +556,8 @@ void CustomAnimationList::update()
CustomAnimationListEntry* pEntry = nullptr;
- std::list< CustomAnimationEffectPtr > aExpanded;
- std::list< CustomAnimationEffectPtr > aSelected;
+ std::vector< CustomAnimationEffectPtr > aExpanded;
+ std::vector< CustomAnimationEffectPtr > aSelected;
CustomAnimationEffectPtr pFirstSelEffect;
CustomAnimationEffectPtr pLastSelEffect;