summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2018-11-24 07:32:07 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-24 15:04:23 +0100
commit7798c84c969b09f519be7f382fa55e15b4ddcb0b (patch)
tree348783f33a81cbd46c9186db85b25d5a962669ff
parentaa1398cc5c4453d1c7ca97eea0d536796de93bae (diff)
Replace list by vector in acctable.cxx
Change-Id: Ia31ce52893edb4d3a050062ddb8579aae877f697 Reviewed-on: https://gerrit.libreoffice.org/63926 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--sw/source/core/access/acctable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/access/acctable.cxx b/sw/source/core/access/acctable.cxx
index 42d901979c4b..d7cae3b0090b 100644
--- a/sw/source/core/access/acctable.cxx
+++ b/sw/source/core/access/acctable.cxx
@@ -21,7 +21,7 @@
#include <sal/log.hxx>
#include <algorithm>
-#include <list>
+#include <vector>
#include <set>
#include <com/sun/star/accessibility/AccessibleRole.hpp>
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
@@ -76,7 +76,7 @@ class SwAccessibleTableData_Impl
SwAccessibleMap& mrAccMap;
Int32Set_Impl maRows;
Int32Set_Impl maColumns;
- std::list < Int32Pair_Impl > maExtents; // cell extends for event processing only
+ std::vector < Int32Pair_Impl > maExtents; // cell extends for event processing only
Point maTabFramePos;
const SwTabFrame *mpTabFrame;
bool const mbIsInPagePreview;