diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-01-06 20:58:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-01-07 06:57:51 +0100 |
commit | 74e74e9a7b6c264112eda1f5bc9e9c5dddf9f4c5 (patch) | |
tree | a4cc2a02a200a0d15a8e7760d2709f98067c2f35 | |
parent | 031576105c21b2e0c2585a1236092487d5d193e2 (diff) |
fix setPropertyNameMapForFilledSeriesProperties
called the wrong method to set new properties,
rather than overwrite all existing properties
Change-Id: I85de598a14876c110e414371fc07a3fde9c6a123
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128059
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | chart2/source/view/main/PropertyMapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/main/PropertyMapper.cxx b/chart2/source/view/main/PropertyMapper.cxx index c8bd6e1d61eb..c8edc21aa852 100644 --- a/chart2/source/view/main/PropertyMapper.cxx +++ b/chart2/source/view/main/PropertyMapper.cxx @@ -597,7 +597,7 @@ void PropertyMapper::setPropertyNameMapForFilledSeriesProperties(SdrPathObj* pSh xOptionSet->Put(XFillColorItem(OUString(), Color(ColorTransparency, *xFillColor))); } if (xOptionSet) - pShape->SetMergedItemSet(*xOptionSet); + pShape->GetProperties().SetObjectItemSet(*xOptionSet); } |