[Libreoffice-commits] core.git: sw/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sat Nov 24 14:04:43 UTC 2018
sw/source/core/access/acctable.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 7798c84c969b09f519be7f382fa55e15b4ddcb0b
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Sat Nov 24 07:32:07 2018 +0100
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Nov 24 15:04:23 2018 +0100
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 at collabora.co.uk>
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;
More information about the Libreoffice-commits
mailing list