diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-01 10:12:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-01 11:05:21 +0200 |
commit | 3c376151f5445f3a5ca147f962a12235128cfc01 (patch) | |
tree | 05c062f8613a9de65bd38df7302282ca830583f8 /sw | |
parent | 9e9e7bd3c9dc9a3149436916e747c7f7ee040621 (diff) |
std::list<sal_Int32> to vector
Change-Id: I7784e9bebf3185eb3e0f699fc80005d3d92ac1b5
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/inc/scriptinfo.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/inc/scriptinfo.hxx b/sw/source/core/inc/scriptinfo.hxx index 865bac95bb24..e0ee73c491df 100644 --- a/sw/source/core/inc/scriptinfo.hxx +++ b/sw/source/core/inc/scriptinfo.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_SW_SOURCE_CORE_INC_SCRIPTINFO_HXX #define INCLUDED_SW_SOURCE_CORE_INC_SCRIPTINFO_HXX -#include <list> +#include <vector> #include <deque> #include "swscanner.hxx" #include <rtl/ustrbuf.hxx> @@ -29,7 +29,7 @@ class SwTextNode; class Point; class MultiSelection; -typedef std::list< sal_Int32 > PositionList; +typedef std::vector< sal_Int32 > PositionList; enum class SwFontScript; #define SPACING_PRECISION_FACTOR 100 |