sc/source/filter/xml/XMLDDELinksContext.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 85f129b59ca690ba519cdbbdb4219fddc3e90098 Author: Julien Nabet <[email protected]> AuthorDate: Sat Nov 24 23:33:47 2018 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Sun Nov 25 00:41:29 2018 +0100 Replace list by vector for ScDDELinkCells typedef (sc) Change-Id: I3531ebc46bfc1c4362fafd7f6c93dd97f85676fa Reviewed-on: https://gerrit.libreoffice.org/63963 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> 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 { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
