summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-09-12 23:19:57 +0200
committerMichael Stahl <mstahl@redhat.com>2012-09-14 15:04:14 +0200
commitc45c64e3de51d9f56c9d9789729b6f7952547a61 (patch)
treec7d9cff427fd50be9eab93e39ebab13b43f4de11
parent0d4c44bb9a9283778abd4be52c44b76bcf6a068c (diff)
fdo#45700: sw ODF export: workaround corrupted table model:
do not export invalid table:number-columns-spanned="0" Change-Id: I7e286a9fcb6ed3df7222c83fe73e870e69561649
-rw-r--r--sw/source/filter/xml/xmltble.cxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/sw/source/filter/xml/xmltble.cxx b/sw/source/filter/xml/xmltble.cxx
index 4acd7ebf9518..5d499b49fc7b 100644
--- a/sw/source/filter/xml/xmltble.cxx
+++ b/sw/source/filter/xml/xmltble.cxx
@@ -977,14 +977,9 @@ void SwXMLExport::ExportTableLine( const SwTableLine& rLine,
if ( nCol < nOldCol )
{
OSL_FAIL( "table and/or table information seems to be corrupted." );
- if ( nBox == nBoxes - 1 )
- {
- nCol = rLines.GetColumns().size() - 1;
- }
- else
- {
- nCol = nOldCol;
- }
+ // NOTE: nOldCol is not necessarily a valid index into
+ // GetColumns(), but that doesn't matter here
+ nCol = nOldCol;
}
sal_uInt16 nColSpan = nCol - nOldCol + 1U;