summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-01 09:35:43 +0200
committerNoel Grandin <noel@peralex.com>2016-09-01 11:05:21 +0200
commit9e9e7bd3c9dc9a3149436916e747c7f7ee040621 (patch)
treef69ec7f6e0b50f337807db99a8460f0131be095c
parent6af36bae47e34c51b0f063e938554db3a922eed6 (diff)
std::list<sal_uLong> to deque
Change-Id: I99d4f5fb322301542519241ec65a38304ecc16a1
-rw-r--r--sw/source/core/doc/tblcpy.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/doc/tblcpy.cxx b/sw/source/core/doc/tblcpy.cxx
index 7a13fd33205c..c199d6df28a3 100644
--- a/sw/source/core/doc/tblcpy.cxx
+++ b/sw/source/core/doc/tblcpy.cxx
@@ -45,6 +45,7 @@
#include <redline.hxx>
#include <fmtfsize.hxx>
#include <list>
+#include <deque>
#include <memory>
#include <o3tl/make_unique.hxx>
@@ -68,7 +69,7 @@ namespace
typedef std::vector< BoxSpanInfo > BoxStructure;
typedef std::vector< BoxStructure > LineStructure;
- typedef std::list< sal_uLong > ColumnStructure;
+ typedef std::deque< sal_uLong > ColumnStructure;
struct SubBox
{