summaryrefslogtreecommitdiffstats
path: root/oox/inc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-10-17 22:10:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-18 08:40:48 +0200
commit695c15ed6e8c4d0236970798f463c7488a903a38 (patch)
tree60038582f7a83e6ec99676d0e8c7a38164ed2040 /oox/inc
parentuse std::vector<Complex> in ComplexList (diff)
downloadcore-695c15ed6e8c4d0236970798f463c7488a903a38.tar.gz
core-695c15ed6e8c4d0236970798f463c7488a903a38.zip
Replace lists by vectors in oox
Change-Id: I951466552fd1cdb3b8f1cbfc07e64f5e0424552e Reviewed-on: https://gerrit.libreoffice.org/43469 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/drawingml/textparagraphpropertiescontext.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/drawingml/textparagraphpropertiescontext.hxx b/oox/inc/drawingml/textparagraphpropertiescontext.hxx
index b16ba562e550..24a40c136ba0 100644
--- a/oox/inc/drawingml/textparagraphpropertiescontext.hxx
+++ b/oox/inc/drawingml/textparagraphpropertiescontext.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_OOX_DRAWINGML_TEXTPARAGRAPHPROPERTIESCONTEXT_HXX
#define INCLUDED_OOX_DRAWINGML_TEXTPARAGRAPHPROPERTIESCONTEXT_HXX
-#include <list>
+#include <vector>
#include <com/sun/star/style/TabStop.hpp>
#include <oox/drawingml/drawingmltypes.hxx>
@@ -44,7 +44,7 @@ protected:
TextParagraphProperties& mrTextParagraphProperties;
TextSpacing maLineSpacing;
BulletList& mrBulletList;
- std::list< css::style::TabStop > maTabList;
+ std::vector< css::style::TabStop > maTabList;
std::shared_ptr< BlipFillProperties > mxBlipProps;
};