diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-10-17 22:10:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-18 08:40:48 +0200 |
commit | 695c15ed6e8c4d0236970798f463c7488a903a38 (patch) | |
tree | 60038582f7a83e6ec99676d0e8c7a38164ed2040 /oox/inc | |
parent | 48a67502e657761b3c5f70adf732f4763fb8035a (diff) |
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.hxx | 4 |
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; }; |