[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - oox/source

Gülşah Köse (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 1 16:02:31 UTC 2020


 oox/source/drawingml/table/tableproperties.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e479eb8048aecb8b7309b02b83234592660f6417
Author:     Gülşah Köse <gulsah.kose at collabora.com>
AuthorDate: Mon Aug 10 10:04:51 2020 +0300
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Tue Sep 1 18:01:59 2020 +0200

    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 at collabora.com>
    Signed-off-by: Xisco Fauli <xiscofauli at libreoffice.org>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101750

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++)


More information about the Libreoffice-commits mailing list