diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-07-15 10:58:51 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-07-17 13:38:15 +0000 |
commit | 8c148bd93ec2fe1aaccbbc583d93784f392edeb8 (patch) | |
tree | 3a93fa8a91c956804c201d1a11ad00bde6bfaf5d /oox | |
parent | 2d87310f83da8ceb7f7e0e12296a6e3c6a41a67b (diff) |
bnc#887225: OOXML import: Correctly apply table style for lastRow.
nMaxColumn and nMaxRow are indexes, so use size() - 1.
Change-Id: I20055e55cf2464710fe553fb8067bad13a339084
(cherry picked from commit 47645734c350f244b4a5642a709132ca1b7dc75d)
Reviewed-on: https://gerrit.libreoffice.org/10331
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/table/tableproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/table/tableproperties.cxx b/oox/source/drawingml/table/tableproperties.cxx index e7f5799a248a..db55c67508e4 100644 --- a/oox/source/drawingml/table/tableproperties.cxx +++ b/oox/source/drawingml/table/tableproperties.cxx @@ -288,7 +288,7 @@ void TableProperties::pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBa Reference< XCellRange > xCellRange( xTable, UNO_QUERY_THROW ); rTableCell.pushToXCell( rFilterBase, pMasterTextListStyle, xCellRange->getCellByPosition( nColumn, nRow ), *this, rTableStyle, - nColumn, aTableRowIter->getTableCells().size(), nRow, mvTableRows.size() ); + nColumn, aTableRowIter->getTableCells().size()-1, nRow, mvTableRows.size()-1 ); } } } |