diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-09-21 15:18:23 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-09-21 18:05:02 +0200 |
commit | b844f06b36cf9a6c1411861a08701c8f9be2af0d (patch) | |
tree | 54b76161f052d77d52e890c712aea86e7852db54 /sw/inc/cellfml.hxx | |
parent | 5b89b1dd909f76154266cd51558e97152cff5f64 (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/inc/cellfml.hxx')
-rw-r--r-- | sw/inc/cellfml.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/cellfml.hxx b/sw/inc/cellfml.hxx index 6c020f155caf..d5a6f2dea672 100644 --- a/sw/inc/cellfml.hxx +++ b/sw/inc/cellfml.hxx @@ -152,7 +152,7 @@ public: eNmType = EXTRNL_NAME; } - sal_uInt16 GetBoxesOfFormula( const SwTable& rTbl, SwSelBoxes& rBoxes ); + void GetBoxesOfFormula(const SwTable& rTbl, SwSelBoxes& rBoxes); // are all boxes valid which this formula relies on? bool HasValidBoxes() const; }; |