[Libreoffice-commits] core.git: sc/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sat Nov 24 23:41:51 UTC 2018
sc/source/filter/xml/XMLDDELinksContext.hxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 85f129b59ca690ba519cdbbdb4219fddc3e90098
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Sat Nov 24 23:33:47 2018 +0100
Commit: Julien Nabet <serval2412 at yahoo.fr>
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 <serval2412 at yahoo.fr>
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
{
More information about the Libreoffice-commits
mailing list