diff options
-rw-r--r-- | sc/source/filter/xml/XMLDDELinksContext.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xml/XMLDDELinksContext.hxx b/sc/source/filter/xml/XMLDDELinksContext.hxx index 5c132353a0c1..67fbab3f29b1 100644 --- a/sc/source/filter/xml/XMLDDELinksContext.hxx +++ b/sc/source/filter/xml/XMLDDELinksContext.hxx @@ -21,7 +21,7 @@ #define INCLUDED_SC_SOURCE_FILTER_XML_XMLDDELINKSCONTEXT_HXX #include "importcontext.hxx" -#include <list> +#include <vector> namespace sax_fastparser { class FastAttributeList; } @@ -44,7 +44,7 @@ struct ScDDELinkCell bool bEmpty; }; -typedef std::list<ScDDELinkCell> ScDDELinkCells; +typedef std::vector<ScDDELinkCell> ScDDELinkCells; class ScXMLDDELinkContext : public ScXMLImportContext { |