diff options
author | Gülşah Köse <gulsah.kose@collabora.com> | 2020-08-10 10:04:51 +0300 |
---|---|---|
committer | Gülşah Köse <gulsah.kose@collabora.com> | 2020-08-10 23:51:39 +0200 |
commit | 99dff69b561a8fe2d9437e6aa67a9581a6666f41 (patch) | |
tree | 11baa67101340214ba81f75253ac30b88cb66d84 /oox | |
parent | 386add495b3d8b7816a521bb28c5f48fc243bc99 (diff) |
tdf#133015 Fix table position during import multicol textbox.
Change-Id: Ied1a03ff9f4556a551738b698ccb284fe74299da
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100414
Tested-by: Jenkins
Reviewed-by: Gülşah Köse <gulsah.kose@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 bf7d0dcfe7a2..1c12c10eda47 100644 --- a/oox/source/drawingml/table/tableproperties.cxx +++ b/oox/source/drawingml/table/tableproperties.cxx @@ -145,7 +145,7 @@ void TableProperties::pushToPropSet(const ::oox::core::XmlFilterBase& rFilterBas for (auto& tableRow : mvTableRows) { sal_Int32 nColumn = 0; - sal_Int32 nColumnSize = tableRow.getTableCells().size(); + sal_Int32 nColumnSize = mvTableGrid.size(); sal_Int32 nRemovedColumn = 0; // for (sal_Int32 nColIndex = 0; nColIndex < nColumnSize; nColIndex++) |