filter/source/msfilter/util.cxx | 1 - 1 file changed, 1 deletion(-) New commits: commit 7ed91f371d2a3cd85d51e61aeff20aa045455e92 Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Mon Oct 21 11:26:03 2024 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Mon Oct 21 14:10:59 2024 +0200
tdf#163486: PVS: duplicated items Since commit f1ec5dcfca45e9623d3da05503353df63e8dba4f Author: Rohit Deshmukh <rohit.deshm...@synerzip.com> Date: Mon Jan 6 11:26:46 2014 +0530 fdo#69616: Fix for VML part missing for group. V766 An item with the same key 'u"ooxml-rect"' has already been added. Change-Id: Iaf14b61d596102c18033a763f8a357d242760f69 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175325 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> Tested-by: Jenkins diff --git a/filter/source/msfilter/util.cxx b/filter/source/msfilter/util.cxx index 78925d1bef0e..911b4cfc010a 100644 --- a/filter/source/msfilter/util.cxx +++ b/filter/source/msfilter/util.cxx @@ -1064,7 +1064,6 @@ OString GetOOXMLPresetGeometry( std::u16string_view rShapeType ) { u"ooxml-cloudCallout", "cloudCallout" }, { u"ooxml-callout1", "callout1" }, { u"ooxml-ribbon", "ribbon" }, - { u"ooxml-rect", "rect" }, }; auto i(aCustomShapeTypeTranslationHashMap.find(rShapeType)); return i == aCustomShapeTypeTranslationHashMap.end() ? "rect"_ostr : i->second;