[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sc/source
Tamás Zolnai
tamas.zolnai at collabora.com
Thu Sep 14 13:38:49 UTC 2017
sc/source/filter/excel/xepivot.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit e0fa93ded694bd7df3c66b9c14fd75e21bdd4bb0
Author: Tamás Zolnai <tamas.zolnai at collabora.com>
Date: Mon Sep 11 17:02:55 2017 +0200
tdf#112328: Pivot table, XLS: Popup button for column fields is missing
...after round trip in Calc
Wrong heading row was exported.
Change-Id: I410eeeff7d7af408de1ea8128b6b21ac0cc76ea5
Reviewed-on: https://gerrit.libreoffice.org/42175
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai at collabora.com>
(cherry picked from commit bc9714fefb2dd2ad55a92aaacb6b246f354ed2c0)
Reviewed-on: https://gerrit.libreoffice.org/42223
Reviewed-by: Andras Timar <andras.timar at collabora.com>
Tested-by: Andras Timar <andras.timar at collabora.com>
diff --git a/sc/source/filter/excel/xepivot.cxx b/sc/source/filter/excel/xepivot.cxx
index 34c5bc530e43..9876c78acc5f 100644
--- a/sc/source/filter/excel/xepivot.cxx
+++ b/sc/source/filter/excel/xepivot.cxx
@@ -1429,9 +1429,9 @@ void XclExpPivotTable::Finalize()
maPTInfo.mnDataRows = rnXclRow2 - rnDataXclRow + 1;
// first heading
- maPTInfo.mnFirstHeadRow = rnXclRow1;
+ maPTInfo.mnFirstHeadRow = rnXclRow1 + 1;
if (bExtraHeaderRow)
- maPTInfo.mnFirstHeadRow += 2;
+ maPTInfo.mnFirstHeadRow += 1;
}
// records ----------------------------------------------------------------
More information about the Libreoffice-commits
mailing list