summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/UndoTable.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-09-21 15:18:23 +0200
committerMichael Stahl <mstahl@redhat.com>2012-09-21 18:05:02 +0200
commitb844f06b36cf9a6c1411861a08701c8f9be2af0d (patch)
tree54b76161f052d77d52e890c712aea86e7852db54 /sw/source/core/inc/UndoTable.hxx
parent5b89b1dd909f76154266cd51558e97152cff5f64 (diff)
fdo#48692: fix problems with large number of table cells:
SwSelBoxes containers are filled from SwTableSortBoxes in various places, so adapt that to use size_t integers as well. Change-Id: Ia55f020bb9ada94bb22802d9adabb055a22edd2f
Diffstat (limited to 'sw/source/core/inc/UndoTable.hxx')
-rw-r--r--sw/source/core/inc/UndoTable.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/inc/UndoTable.hxx b/sw/source/core/inc/UndoTable.hxx
index d22552d545bb..32bae4337b5c 100644
--- a/sw/source/core/inc/UndoTable.hxx
+++ b/sw/source/core/inc/UndoTable.hxx
@@ -176,7 +176,7 @@ public:
class SwUndoTblNdsChg : public SwUndo, private boost::noncopyable
{
_SaveTable* pSaveTbl;
- std::set<sal_uLong> aBoxes;
+ std::set<sal_uLong> m_Boxes;
struct _BoxMove
{
sal_uLong index; ///< Index of this box.
@@ -229,7 +229,7 @@ class SwUndoTblMerge : public SwUndo, private SwUndRng
{
sal_uLong nTblNode;
_SaveTable* pSaveTbl;
- std::set<sal_uLong> aBoxes;
+ std::set<sal_uLong> m_Boxes;
std::vector<sal_uLong> aNewSttNds;
SwUndoMoves* pMoves;
SwHistory* pHistory;