diff options
author | Noel Grandin <noel@peralex.com> | 2021-04-14 12:51:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-14 17:04:52 +0200 |
commit | 306f6934ac6f0b012eaecd05bb4abb7c9d341993 (patch) | |
tree | 9ab9b1d067b9ba3074fee1e32d065c4e407fd6f6 /oox/source/ppt/presentationfragmenthandler.cxx | |
parent | 869acd8315af695ff79594fc6a498abb8371103a (diff) |
reduce allocation in TextListStyle
Change-Id: Id1bad0bf39b03bc6d4004c50c0f35b60d6753aa8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114084
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/source/ppt/presentationfragmenthandler.cxx')
-rw-r--r-- | oox/source/ppt/presentationfragmenthandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ppt/presentationfragmenthandler.cxx b/oox/source/ppt/presentationfragmenthandler.cxx index aced17a2523b..9e14a260b846 100644 --- a/oox/source/ppt/presentationfragmenthandler.cxx +++ b/oox/source/ppt/presentationfragmenthandler.cxx @@ -86,7 +86,7 @@ PresentationFragmentHandler::PresentationFragmentHandler(XmlFilterBase& rFilter, , mpTextListStyle( std::make_shared<TextListStyle>() ) , mbCommentAuthorsRead(false) { - TextParagraphPropertiesVector& rParagraphDefaultsVector( mpTextListStyle->getListStyle() ); + TextParagraphPropertiesArray& rParagraphDefaultsVector( mpTextListStyle->getListStyle() ); for (auto const& elem : rParagraphDefaultsVector) { // ppt is having zero bottom margin per default, whereas OOo is 0,5cm, |