summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2018-11-24 23:33:47 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-11-25 00:41:29 +0100
commit85f129b59ca690ba519cdbbdb4219fddc3e90098 (patch)
tree79c5a1fc93f1fb5be8291d468b095360ac7d5bfc /sc
parentd057e61cb5aae15ea37ce9ac824647cd2060e331 (diff)
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 <serval2412@yahoo.fr>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/xml/XMLDDELinksContext.hxx4
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
{