diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-09-11 17:02:55 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-09-12 00:12:31 +0200 |
commit | bc9714fefb2dd2ad55a92aaacb6b246f354ed2c0 (patch) | |
tree | b50f61b515bf4022be347a2fe1944273ed1200ac /sc/source | |
parent | c43152a008961f78bce30c19b84810ed9472870d (diff) |
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@libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/excel/xepivot.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xepivot.cxx b/sc/source/filter/excel/xepivot.cxx index 82f7db5646b4..00fe96fa8e37 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 ---------------------------------------------------------------- |