summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/WW8TableInfo.cxx
diff options
context:
space:
mode:
authorHenning Brinkmann <hbrinkm@openoffice.org>2011-03-04 13:00:54 +0100
committerHenning Brinkmann <hbrinkm@openoffice.org>2011-03-04 13:00:54 +0100
commit4071c0b8c087568d390e5cee5db4ef7574d6c6da (patch)
treea29ec65750e516dcb3681d15860ea0636aae8885 /sw/source/filter/ww8/WW8TableInfo.cxx
parentb87cf5db3a0717a2bddc0b2b11a35a0df1f72a35 (diff)
sw34bf04: #i104017#: there are 63 cells possible in a row
Diffstat (limited to 'sw/source/filter/ww8/WW8TableInfo.cxx')
-rw-r--r--sw/source/filter/ww8/WW8TableInfo.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/WW8TableInfo.cxx b/sw/source/filter/ww8/WW8TableInfo.cxx
index 28180f598f6e..d10ff5d6d81f 100644
--- a/sw/source/filter/ww8/WW8TableInfo.cxx
+++ b/sw/source/filter/ww8/WW8TableInfo.cxx
@@ -251,8 +251,8 @@ WidthsPtr WW8TableNodeInfoInner::getWidthsOfRow()
pWidths = WidthsPtr(new Widths);
// number of cell written
sal_uInt32 nBoxes = rTabBoxes.Count();
- if ( nBoxes > 32 )
- nBoxes = 32;
+ if ( nBoxes > 63 )
+ nBoxes = 63;
for (sal_uInt32 n = 0; n < nBoxes; n++)
{
@@ -282,8 +282,8 @@ RowSpansPtr WW8TableNodeInfoInner::getRowSpansOfRow()
const SwTableBoxes & rTabBoxes = pTabLine->GetTabBoxes();
sal_uInt32 nBoxes = rTabBoxes.Count();
- if (nBoxes > 32)
- nBoxes = 32;
+ if (nBoxes > 63)
+ nBoxes = 63;
for (sal_uInt32 n = 0; n < nBoxes; ++n)
{