diff options
Diffstat (limited to 'oox/source/drawingml/texttabstoplistcontext.cxx')
-rw-r--r-- | oox/source/drawingml/texttabstoplistcontext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/texttabstoplistcontext.cxx b/oox/source/drawingml/texttabstoplistcontext.cxx index 12a908b58fb5..f03152009318 100644 --- a/oox/source/drawingml/texttabstoplistcontext.cxx +++ b/oox/source/drawingml/texttabstoplistcontext.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <list> +#include <vector> #include <algorithm> #include <rtl/ustring.hxx> @@ -35,7 +35,7 @@ using namespace ::com::sun::star::xml::sax; namespace oox { namespace drawingml { - TextTabStopListContext::TextTabStopListContext( ContextHandler2Helper const & rParent, std::list< TabStop > & aTabList ) + TextTabStopListContext::TextTabStopListContext( ContextHandler2Helper const & rParent, std::vector< TabStop > & aTabList ) : ContextHandler2( rParent ) , maTabList( aTabList ) { |