diff --git a/include/svx/EnhancedCustomShapeGeometry.hxx b/include/svx/EnhancedCustomShapeGeometry.hxx index 3191f1e5d14f..c776daff606a 100644 --- a/include/svx/EnhancedCustomShapeGeometry.hxx +++ b/include/svx/EnhancedCustomShapeGeometry.hxx @@ -73,8 +73,7 @@ struct mso_CustomShape std::span pVertices; sal_uInt16* pElements; sal_uInt32 nElements; - SvxMSDffCalculationData* pCalculation; - sal_uInt32 nCalculation; + std::span pCalculation; sal_Int32* pDefData; SvxMSDffTextRectangles* pTextRect; sal_uInt32 nTextRect; diff --git a/svx/source/customshapes/EnhancedCustomShapeGeometry.cxx b/svx/source/customshapes/EnhancedCustomShapeGeometry.cxx index ad87e34d5da3..31085c48b9a2 100644 --- a/svx/source/customshapes/EnhancedCustomShapeGeometry.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeGeometry.cxx @@ -17,7 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - #include #include @@ -130,7 +129,7 @@ const mso_CustomShape msoArc = { std::span(mso_sptArcVert), const_cast(mso_sptArcSegm), sizeof( mso_sptArcSegm ) >> 1, - const_cast(mso_sptArcCalc), SAL_N_ELEMENTS( mso_sptArcCalc ), + std::span(mso_sptArcCalc), const_cast(mso_sptArcDefault), nullptr, 0, 21600, 21600, @@ -147,7 +146,7 @@ const mso_CustomShape msoTextSimple = { std::span(mso_sptTextSimpleVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, nullptr, 0, 21600, 21600, @@ -164,7 +163,7 @@ const mso_CustomShape msoRectangle = { std::span(mso_sptRectangleVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, nullptr, 0, 21600, 21600, @@ -209,7 +208,7 @@ const mso_CustomShape msoRoundRectangle = { std::span(mso_sptRoundRectangleVert), const_cast(mso_sptRoundRectangleSegm), sizeof( mso_sptRoundRectangleSegm ) >> 1, - const_cast(mso_sptRoundRectangleCalc), SAL_N_ELEMENTS( mso_sptRoundRectangleCalc ), + std::span(mso_sptRoundRectangleCalc), const_cast(mso_sptDefault3600), const_cast(mso_sptRoundRectangleTextRect), SAL_N_ELEMENTS( mso_sptRoundRectangleTextRect ), 21600, 21600, @@ -234,7 +233,7 @@ const mso_CustomShape msoRightTriangle = { std::span(mso_sptRightTriangleVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptRightTriangleTextRect), SAL_N_ELEMENTS( mso_sptRightTriangleTextRect ), 21600, 21600, @@ -263,7 +262,7 @@ const mso_CustomShape msoEllipse = { std::span(mso_sptEllipseVert), const_cast(mso_sptEllipseSegm), sizeof( mso_sptEllipseSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptEllipseTextRect), SAL_N_ELEMENTS( mso_sptEllipseTextRect ), 21600, 21600, @@ -314,7 +313,7 @@ const mso_CustomShape msoParallelogram = { std::span(mso_sptParallelogramVert), const_cast(mso_sptParallelogramSegm), sizeof( mso_sptParallelogramSegm ) >> 1, - const_cast(mso_sptParallelogramCalc), SAL_N_ELEMENTS( mso_sptParallelogramCalc ), + std::span(mso_sptParallelogramCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptParallelogramTextRect), SAL_N_ELEMENTS( mso_sptParallelogramTextRect ), 21600, 21600, @@ -335,7 +334,7 @@ const mso_CustomShape msoDiamond = { std::span(mso_sptDiamondVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptDiamondTextRect), SAL_N_ELEMENTS( mso_sptDiamondTextRect ), 21600, 21600, @@ -379,7 +378,7 @@ const mso_CustomShape msoTrapezoid = { std::span(mso_sptTrapezoidVert), const_cast(mso_sptTrapezoidSegm), sizeof( mso_sptTrapezoidSegm ) >> 1, - const_cast(mso_sptTrapezoidCalc), SAL_N_ELEMENTS( mso_sptTrapezoidCalc ), + std::span(mso_sptTrapezoidCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptTrapezoidTextRect), SAL_N_ELEMENTS( mso_sptTrapezoidTextRect ), 21600, 21600, @@ -470,7 +469,7 @@ const mso_CustomShape msoOctagon = { std::span(mso_sptOctagonVert), const_cast(mso_sptOctagonSegm), sizeof( mso_sptOctagonSegm ) >> 1, - const_cast(mso_sptOctagonCalc), SAL_N_ELEMENTS( mso_sptOctagonCalc ), + std::span(mso_sptOctagonCalc), const_cast(mso_sptOctagonDefault), const_cast(mso_sptOctagonTextRect), SAL_N_ELEMENTS( mso_sptOctagonTextRect ), 21600, 21600, @@ -516,7 +515,7 @@ const mso_CustomShape msoIsocelesTriangle = { std::span(mso_sptIsocelesTriangleVert), const_cast(mso_sptIsocelesTriangleSegm), sizeof( mso_sptIsocelesTriangleSegm ) >> 1, - const_cast(mso_sptIsocelesTriangleCalc), SAL_N_ELEMENTS( mso_sptIsocelesTriangleCalc ), + std::span(mso_sptIsocelesTriangleCalc), const_cast(mso_sptDefault10800), const_cast(mso_sptIsocelesTriangleTextRect), SAL_N_ELEMENTS( mso_sptIsocelesTriangleTextRect ), 21600, 21600, @@ -555,7 +554,7 @@ const mso_CustomShape msoHexagon = { std::span(mso_sptHexagonVert), const_cast(mso_sptHexagonSegm), sizeof( mso_sptHexagonSegm ) >> 1, - const_cast(mso_sptHexagonCalc), SAL_N_ELEMENTS( mso_sptHexagonCalc ), + std::span(mso_sptHexagonCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptHexagonTextRect), SAL_N_ELEMENTS( mso_sptHexagonTextRect ), 21600, 21600, @@ -582,7 +581,7 @@ const mso_CustomShape msoPentagon = { std::span(mso_sptPentagonVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptPentagonTextRect), SAL_N_ELEMENTS( mso_sptPentagonTextRect ), 21600, 21600, @@ -617,7 +616,7 @@ const mso_CustomShape msoPlus = { std::span(mso_sptPlusVert), nullptr, 0, - const_cast(mso_sptPlusCalc), SAL_N_ELEMENTS( mso_sptPlusCalc ), + std::span(mso_sptPlusCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptPlusTextRect), SAL_N_ELEMENTS( mso_sptPlusTextRect ), 21600, 21600, @@ -674,7 +673,7 @@ const mso_CustomShape msoCan = { std::span(mso_sptCanVert), const_cast(mso_sptCanSegm), sizeof( mso_sptCanSegm ) >> 1, - const_cast(mso_sptCanCalc), SAL_N_ELEMENTS( mso_sptCanCalc ), + std::span(mso_sptCanCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptCanTextRect), SAL_N_ELEMENTS( mso_sptCanTextRect ), 88, 21600, @@ -716,7 +715,7 @@ const mso_CustomShape msoArrow = { std::span(mso_sptArrowVert), const_cast(mso_sptArrowSegm), sizeof( mso_sptArrowSegm ) >> 1, - const_cast(mso_sptArrowCalc), SAL_N_ELEMENTS( mso_sptArrowCalc ), + std::span(mso_sptArrowCalc), const_cast(mso_sptDefault16200and5400), const_cast(mso_sptArrowTextRect), SAL_N_ELEMENTS( mso_sptArrowTextRect ), 21600, 21600, @@ -751,7 +750,7 @@ const mso_CustomShape msoLeftArrow = { std::span(mso_sptLeftArrowVert), const_cast(mso_sptLeftArrowSegm), sizeof( mso_sptLeftArrowSegm ) >> 1, - const_cast(mso_sptArrowCalc), SAL_N_ELEMENTS( mso_sptArrowCalc ), + std::span(mso_sptArrowCalc), const_cast(mso_sptLeftArrowDefault), const_cast(mso_sptLeftArrowTextRect), SAL_N_ELEMENTS( mso_sptLeftArrowTextRect ), 21600, 21600, @@ -782,7 +781,7 @@ const mso_CustomShape msoDownArrow = { std::span(mso_sptDownArrowVert), const_cast(mso_sptDownArrowSegm), sizeof( mso_sptDownArrowSegm ) >> 1, - const_cast(mso_sptArrowCalc), SAL_N_ELEMENTS( mso_sptArrowCalc ), + std::span(mso_sptArrowCalc), const_cast(mso_sptDefault16200and5400), const_cast(mso_sptDownArrowTextRect), SAL_N_ELEMENTS( mso_sptDownArrowTextRect ), 21600, 21600, @@ -817,7 +816,7 @@ const mso_CustomShape msoUpArrow = { std::span(mso_sptUpArrowVert), const_cast(mso_sptUpArrowSegm), sizeof( mso_sptUpArrowSegm ) >> 1, - const_cast(mso_sptArrowCalc), SAL_N_ELEMENTS( mso_sptArrowCalc ), + std::span(mso_sptArrowCalc), const_cast(mso_sptUpArrowDefault), const_cast(mso_sptUpArrowTextRect), SAL_N_ELEMENTS( mso_sptUpArrowTextRect ), 21600, 21600, @@ -866,7 +865,7 @@ const mso_CustomShape msoLeftRightArrow = { std::span(mso_sptLeftRightArrowVert), const_cast(mso_sptLeftRightArrowSegm), sizeof( mso_sptLeftRightArrowSegm ) >> 1, - const_cast(mso_sptDoubleArrowCalc), SAL_N_ELEMENTS( mso_sptDoubleArrowCalc ), + std::span(mso_sptDoubleArrowCalc), const_cast(mso_sptLeftRightArrowDefault), const_cast(mso_sptLeftRightArrowTextRect), SAL_N_ELEMENTS( mso_sptLeftRightArrowTextRect ), 21600, 21600, @@ -902,7 +901,7 @@ const mso_CustomShape msoUpDownArrow = { std::span(mso_sptUpDownArrowVert), const_cast(mso_sptUpDownArrowSegm), sizeof( mso_sptUpDownArrowSegm ) >> 1, - const_cast(mso_sptDoubleArrowCalc), SAL_N_ELEMENTS( mso_sptDoubleArrowCalc ), + std::span(mso_sptDoubleArrowCalc), const_cast(mso_sptUpDownArrowDefault), const_cast(mso_sptUpDownArrowTextRect), SAL_N_ELEMENTS( mso_sptUpDownArrowTextRect ), 21600, 21600, @@ -952,7 +951,7 @@ const mso_CustomShape msoQuadArrow = { std::span(mso_sptQuadArrowVert), const_cast(mso_sptQuadArrowSegm), sizeof( mso_sptQuadArrowSegm ) >> 1, - const_cast(mso_sptQuadArrowCalc), SAL_N_ELEMENTS( mso_sptQuadArrowCalc ), + std::span(mso_sptQuadArrowCalc), const_cast(mso_sptQuadArrowDefault), const_cast(mso_sptQuadArrowTextRect), SAL_N_ELEMENTS( mso_sptQuadArrowTextRect ), 21600, 21600, @@ -1001,7 +1000,7 @@ const mso_CustomShape msoLeftRightUpArrow = { std::span(mso_sptLeftRightUpArrowVert), const_cast(mso_sptLeftRightUpArrowSegm), sizeof( mso_sptLeftRightUpArrowSegm ) >> 1, - const_cast(mso_sptLeftRightUpArrowCalc), SAL_N_ELEMENTS( mso_sptLeftRightUpArrowCalc ), + std::span(mso_sptLeftRightUpArrowCalc), const_cast(mso_sptLeftRightUpArrowDefault), const_cast(mso_sptLeftRightUpArrowTextRect), SAL_N_ELEMENTS( mso_sptLeftRightUpArrowTextRect ), 21600, 21600, @@ -1045,7 +1044,7 @@ const mso_CustomShape msoBentArrow = { std::span(mso_sptBentArrowVert), const_cast(mso_sptBentArrowSegm), sizeof( mso_sptBentArrowSegm ) >> 1, - const_cast(mso_sptBentArrowCalc), SAL_N_ELEMENTS( mso_sptBentArrowCalc ), + std::span(mso_sptBentArrowCalc), const_cast(mso_sptBentArrowDefault), const_cast(mso_sptBentArrowTextRect), SAL_N_ELEMENTS( mso_sptBentArrowTextRect ), 21600, 21600, @@ -1076,7 +1075,7 @@ const mso_CustomShape msoUturnArrow = { std::span(mso_sptUturnArrowVert), const_cast(mso_sptUturnArrowSegm), sizeof( mso_sptUturnArrowSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptUturnArrowTextRect), SAL_N_ELEMENTS( mso_sptUturnArrowTextRect ), 21600, 21600, @@ -1128,7 +1127,7 @@ const mso_CustomShape msoLeftUpArrow = { std::span(mso_sptLeftUpArrowVert), const_cast(mso_sptLeftUpArrowSegm), sizeof( mso_sptLeftUpArrowSegm ) >> 1, - const_cast(mso_sptLeftUpArrowCalc), SAL_N_ELEMENTS( mso_sptLeftUpArrowCalc ), + std::span(mso_sptLeftUpArrowCalc), const_cast(mso_sptLeftUpArrowDefault), const_cast(mso_sptLeftUpArrowTextRect), SAL_N_ELEMENTS( mso_sptLeftUpArrowTextRect ), 21600, 21600, @@ -1181,7 +1180,7 @@ const mso_CustomShape msoBentUpArrow = { std::span(mso_sptBentUpArrowVert), const_cast(mso_sptBentUpArrowSegm), sizeof( mso_sptBentUpArrowSegm ) >> 1, - const_cast(mso_sptBentUpArrowCalc), SAL_N_ELEMENTS( mso_sptBentUpArrowCalc ), + std::span(mso_sptBentUpArrowCalc), const_cast(mso_sptBentUpArrowDefault), const_cast(mso_sptBentUpArrowTextRect), SAL_N_ELEMENTS( mso_sptBentUpArrowTextRect ), 21600, 21600, @@ -1290,7 +1289,7 @@ const mso_CustomShape msoCurvedRightArrow = { std::span(mso_sptCurvedRightVert), const_cast(mso_sptCurvedRightSegm), sizeof( mso_sptCurvedRightSegm ) >> 1, - const_cast(mso_sptCurvedRightCalc), SAL_N_ELEMENTS( mso_sptCurvedRightCalc ), + std::span(mso_sptCurvedRightCalc), const_cast(mso_sptCurvedRightDefault), const_cast(mso_sptCurvedRightTextRect), SAL_N_ELEMENTS( mso_sptCurvedRightTextRect ), 21600, 21600, @@ -1346,7 +1345,7 @@ const mso_CustomShape msoCurvedDownArrow = { std::span(mso_sptCurvedDownVert), const_cast(mso_sptCurvedDownSegm), sizeof( mso_sptCurvedDownSegm ) >> 1, - const_cast(mso_sptCurvedRightCalc), SAL_N_ELEMENTS( mso_sptCurvedRightCalc ), + std::span(mso_sptCurvedRightCalc), const_cast(mso_sptCurvedRightDefault), const_cast(mso_sptCurvedDownTextRect), SAL_N_ELEMENTS( mso_sptCurvedDownTextRect ), 21600, 21600, @@ -1453,7 +1452,7 @@ const mso_CustomShape msoCurvedUpArrow = { std::span(mso_sptCurvedUpVert), const_cast(mso_sptCurvedUpSegm), sizeof( mso_sptCurvedUpSegm ) >> 1, - const_cast(mso_sptCurvedUpCalc), SAL_N_ELEMENTS( mso_sptCurvedUpCalc ), + std::span(mso_sptCurvedUpCalc), const_cast(mso_sptCurvedUpDefault), const_cast(mso_sptCurvedUpTextRect), SAL_N_ELEMENTS( mso_sptCurvedUpTextRect ), 21600, 21600, @@ -1507,7 +1506,7 @@ const mso_CustomShape msoCurvedLeftArrow = { std::span(mso_sptCurvedLeftVert), const_cast(mso_sptCurvedLeftSegm), sizeof( mso_sptCurvedLeftSegm ) >> 1, - const_cast(mso_sptCurvedUpCalc), SAL_N_ELEMENTS( mso_sptCurvedUpCalc ), + std::span(mso_sptCurvedUpCalc), const_cast(mso_sptCurvedUpDefault), const_cast(mso_sptCurvedLeftTextRect), SAL_N_ELEMENTS( mso_sptCurvedLeftTextRect ), 21600, 21600, @@ -1551,7 +1550,7 @@ const mso_CustomShape msoStripedRightArrow = { std::span(mso_sptStripedRightArrowVert), const_cast(mso_sptStripedRightArrowSegm), sizeof( mso_sptStripedRightArrowSegm ) >> 1, - const_cast(mso_sptStripedRightArrowCalc), SAL_N_ELEMENTS( mso_sptStripedRightArrowCalc ), + std::span(mso_sptStripedRightArrowCalc), const_cast(mso_sptDefault16200and5400), const_cast(mso_sptStripedRightArrowTextRect), SAL_N_ELEMENTS( mso_sptStripedRightArrowTextRect ), 21600, 21600, @@ -1588,7 +1587,7 @@ const mso_CustomShape msoNotchedRightArrow = { std::span(mso_sptNotchedRightArrowVert), nullptr, 0, - const_cast(mso_sptNotchedRightArrowCalc), SAL_N_ELEMENTS( mso_sptNotchedRightArrowCalc ), + std::span(mso_sptNotchedRightArrowCalc), const_cast(mso_sptDefault16200and5400), const_cast(mso_sptNotchedRightArrowTextRect), SAL_N_ELEMENTS( mso_sptNotchedRightArrowTextRect ), 21600, 21600, @@ -1627,7 +1626,7 @@ const mso_CustomShape msoHomePlate = { std::span(mso_sptHomePlateVert), const_cast(mso_sptHomePlateSegm), sizeof( mso_sptHomePlateSegm ) >> 1, - const_cast(mso_sptHomePlateCalc), SAL_N_ELEMENTS( mso_sptHomePlateCalc ), + std::span(mso_sptHomePlateCalc), const_cast(mso_sptHomePlateDefault), const_cast(mso_sptHomePlateTextRect), SAL_N_ELEMENTS( mso_sptHomePlateTextRect ), 21600, 21600, @@ -1667,7 +1666,7 @@ const mso_CustomShape msoChevron = { std::span(mso_sptChevronVert), const_cast(mso_sptChevronSegm), sizeof( mso_sptChevronSegm ) >> 1, - const_cast(mso_sptChevronCalc), SAL_N_ELEMENTS( mso_sptChevronCalc ), + std::span(mso_sptChevronCalc), const_cast(mso_sptChevronDefault), const_cast(mso_sptChevronTextRect), SAL_N_ELEMENTS( mso_sptChevronTextRect ), 21600, 21600, @@ -1716,7 +1715,7 @@ const mso_CustomShape msoRightArrowCallout = { std::span(mso_sptRightArrowCalloutVert), const_cast(mso_sptRightArrowCalloutSegm), sizeof( mso_sptRightArrowCalloutSegm ) >> 1, - const_cast(mso_sptRightArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptRightArrowCalloutCalc ), + std::span(mso_sptRightArrowCalloutCalc), const_cast(mso_sptRightArrowCalloutDefault), const_cast(mso_sptRightArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptRightArrowCalloutTextRect ), 21600, 21600, @@ -1765,7 +1764,7 @@ const mso_CustomShape msoLeftArrowCallout = { std::span(mso_sptLeftArrowCalloutVert), const_cast(mso_sptLeftArrowCalloutSegm), sizeof( mso_sptLeftArrowCalloutSegm ) >> 1, - const_cast(mso_sptLeftArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptLeftArrowCalloutCalc ), + std::span(mso_sptLeftArrowCalloutCalc), const_cast(mso_sptLeftArrowCalloutDefault), const_cast(mso_sptLeftArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptLeftArrowCalloutTextRect ), 21600, 21600, @@ -1814,7 +1813,7 @@ const mso_CustomShape msoUpArrowCallout = { std::span(mso_sptUpArrowCalloutVert), const_cast(mso_sptUpArrowCalloutSegm), sizeof( mso_sptUpArrowCalloutSegm ) >> 1, - const_cast(mso_sptUpArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptUpArrowCalloutCalc ), + std::span(mso_sptUpArrowCalloutCalc), const_cast(mso_sptUpArrowCalloutDefault), const_cast(mso_sptUpArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptUpArrowCalloutTextRect ), 21600, 21600, @@ -1863,7 +1862,7 @@ const mso_CustomShape msoDownArrowCallout = { std::span(mso_sptDownArrowCalloutVert), const_cast(mso_sptDownArrowCalloutSegm), sizeof( mso_sptDownArrowCalloutSegm ) >> 1, - const_cast(mso_sptDownArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptDownArrowCalloutCalc ), + std::span(mso_sptDownArrowCalloutCalc), const_cast(mso_sptDownArrowCalloutDefault), const_cast(mso_sptDownArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptDownArrowCalloutTextRect ), 21600, 21600, @@ -1916,7 +1915,7 @@ const mso_CustomShape msoLeftRightArrowCallout = { std::span(mso_sptLeftRightArrowCalloutVert), const_cast(mso_sptLeftRightArrowCalloutSegm), sizeof( mso_sptLeftRightArrowCalloutSegm ) >> 1, - const_cast(mso_sptLeftRightArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptLeftRightArrowCalloutCalc ), + std::span(mso_sptLeftRightArrowCalloutCalc), const_cast(mso_sptLeftRightArrowCalloutDefault), const_cast(mso_sptLeftRightArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptLeftRightArrowCalloutTextRect ), 21600, 21600, @@ -1969,7 +1968,7 @@ const mso_CustomShape msoUpDownArrowCallout = { std::span(mso_sptUpDownArrowCalloutVert), const_cast(mso_sptUpDownArrowCalloutSegm), sizeof( mso_sptUpDownArrowCalloutSegm ) >> 1, - const_cast(mso_sptUpDownArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptUpDownArrowCalloutCalc ), + std::span(mso_sptUpDownArrowCalloutCalc), const_cast(mso_sptUpDownArrowCalloutDefault), const_cast(mso_sptUpDownArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptUpDownArrowCalloutTextRect ), 21600, 21600, @@ -2025,7 +2024,7 @@ const mso_CustomShape msoQuadArrowCallout = { std::span(mso_sptQuadArrowCalloutVert), const_cast(mso_sptQuadArrowCalloutSegm), sizeof( mso_sptQuadArrowCalloutSegm ) >> 1, - const_cast(mso_sptQuadArrowCalloutCalc), SAL_N_ELEMENTS( mso_sptQuadArrowCalloutCalc ), + std::span(mso_sptQuadArrowCalloutCalc), const_cast(mso_sptQuadArrowCalloutDefault), const_cast(mso_sptQuadArrowCalloutTextRect), SAL_N_ELEMENTS( mso_sptQuadArrowCalloutTextRect ), 21600, 21600, @@ -2121,7 +2120,7 @@ const mso_CustomShape msoCircularArrow = { std::span(mso_sptCircularArrowVert), const_cast(mso_sptCircularArrowSegm), sizeof( mso_sptCircularArrowSegm ) >> 1, - const_cast(mso_sptCircularArrowCalc), SAL_N_ELEMENTS( mso_sptCircularArrowCalc ), + std::span(mso_sptCircularArrowCalc), const_cast(mso_sptCircularArrowDefault), const_cast(mso_sptCircularArrowTextRect), SAL_N_ELEMENTS( mso_sptCircularArrowTextRect ), 21600, 21600, @@ -2175,7 +2174,7 @@ const mso_CustomShape msoCube = { std::span(mso_sptCubeVert), const_cast(mso_sptCubeSegm), sizeof( mso_sptCubeSegm ) >> 1, - const_cast(mso_sptCubeCalc), SAL_N_ELEMENTS( mso_sptCubeCalc ), + std::span(mso_sptCubeCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptCubeTextRect), SAL_N_ELEMENTS( mso_sptCubeTextRect ), 21600, 21600, @@ -2220,7 +2219,7 @@ const mso_CustomShape msoBevel = { std::span(mso_sptBevelVert), const_cast(mso_sptBevelSegm), sizeof( mso_sptBevelSegm ) >> 1, - const_cast(mso_sptBevelCalc), SAL_N_ELEMENTS( mso_sptBevelCalc ), + std::span(mso_sptBevelCalc), const_cast(mso_sptDefault2700), const_cast(mso_sptBevelTextRect), SAL_N_ELEMENTS( mso_sptBevelTextRect ), 21600, 21600, @@ -2272,7 +2271,7 @@ const mso_CustomShape msoFoldedCorner = { std::span(mso_sptFoldedCornerVert), const_cast(mso_sptFoldedCornerSegm), sizeof( mso_sptFoldedCornerSegm ) >> 1, - const_cast(mso_sptFoldedCornerCalc), SAL_N_ELEMENTS( mso_sptFoldedCornerCalc ), + std::span(mso_sptFoldedCornerCalc), const_cast(mso_sptFoldedCornerDefault), const_cast(mso_sptFoldedCornerTextRect), SAL_N_ELEMENTS( mso_sptFoldedCornerTextRect ), 21600, 21600, @@ -2316,7 +2315,7 @@ const mso_CustomShape msoActionButtonBlank = { std::span(mso_sptActionButtonBlankVert), const_cast(mso_sptActionButtonBlankSegm), sizeof( mso_sptActionButtonBlankSegm ) >> 1, - const_cast(mso_sptActionButtonBlankCalc), SAL_N_ELEMENTS( mso_sptActionButtonBlankCalc ), + std::span(mso_sptActionButtonBlankCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonBlankTextRect), SAL_N_ELEMENTS( mso_sptActionButtonBlankTextRect ), 21600, 21600, @@ -2404,7 +2403,7 @@ const mso_CustomShape msoActionButtonHome = { std::span(mso_sptActionButtonHomeVert), const_cast(mso_sptActionButtonHomeSegm), sizeof( mso_sptActionButtonHomeSegm ) >> 1, - const_cast(mso_sptActionButtonHomeCalc), SAL_N_ELEMENTS( mso_sptActionButtonHomeCalc ), + std::span(mso_sptActionButtonHomeCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2514,7 +2513,7 @@ const mso_CustomShape msoActionButtonHelp = { std::span(mso_sptActionButtonHelpVert), const_cast(mso_sptActionButtonHelpSegm), sizeof( mso_sptActionButtonHelpSegm ) >> 1, - const_cast(mso_sptActionButtonHelpCalc), SAL_N_ELEMENTS( mso_sptActionButtonHelpCalc ), + std::span(mso_sptActionButtonHelpCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2602,7 +2601,7 @@ const mso_CustomShape msoActionButtonInformation = { std::span(mso_sptActionButtonInformationVert), const_cast(mso_sptActionButtonInformationSegm), sizeof( mso_sptActionButtonInformationSegm ) >> 1, - const_cast(mso_sptActionButtonInformationCalc), SAL_N_ELEMENTS( mso_sptActionButtonInformationCalc ), + std::span(mso_sptActionButtonInformationCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2655,7 +2654,7 @@ const mso_CustomShape msoActionButtonBackPrevious = { std::span(mso_sptActionButtonBackPreviousVert), const_cast(mso_sptActionButtonForwardBackSegm), sizeof( mso_sptActionButtonForwardBackSegm ) >> 1, - const_cast(mso_sptActionButtonForwardBackCalc), SAL_N_ELEMENTS( mso_sptActionButtonForwardBackCalc ), + std::span(mso_sptActionButtonForwardBackCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2678,7 +2677,7 @@ const mso_CustomShape msoActionButtonForwardNext = { std::span(mso_sptActionButtonForwardNextVert), const_cast(mso_sptActionButtonForwardBackSegm), sizeof( mso_sptActionButtonForwardBackSegm ) >> 1, - const_cast(mso_sptActionButtonForwardBackCalc), SAL_N_ELEMENTS( mso_sptActionButtonForwardBackCalc ), + std::span(mso_sptActionButtonForwardBackCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2745,7 +2744,7 @@ const mso_CustomShape msoActionButtonBeginning = { std::span(mso_sptActionButtonBeginningVert), const_cast(mso_sptActionButtonBeginningEndSegm), sizeof( mso_sptActionButtonBeginningEndSegm ) >> 1, - const_cast(mso_sptActionButtonBeginningEndCalc), SAL_N_ELEMENTS( mso_sptActionButtonBeginningEndCalc ), + std::span(mso_sptActionButtonBeginningEndCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2770,7 +2769,7 @@ const mso_CustomShape msoActionButtonEnd = { std::span(mso_sptActionButtonEndVert), const_cast(mso_sptActionButtonBeginningEndSegm), sizeof( mso_sptActionButtonBeginningEndSegm ) >> 1, - const_cast(mso_sptActionButtonBeginningEndCalc), SAL_N_ELEMENTS( mso_sptActionButtonBeginningEndCalc ), + std::span(mso_sptActionButtonBeginningEndCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2859,7 +2858,7 @@ const mso_CustomShape msoActionButtonReturn = { std::span(mso_sptActionButtonReturnVert), const_cast(mso_sptActionButtonReturnSegm), sizeof( mso_sptActionButtonReturnSegm ) >> 1, - const_cast(mso_sptActionButtonReturnCalc), SAL_N_ELEMENTS( mso_sptActionButtonReturnCalc ), + std::span(mso_sptActionButtonReturnCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2919,7 +2918,7 @@ const mso_CustomShape msoActionButtonDocument = { std::span(mso_sptActionButtonDocumentVert), const_cast(mso_sptActionButtonDocumentSegm), sizeof( mso_sptActionButtonDocumentSegm ) >> 1, - const_cast(mso_sptActionButtonDocumentCalc), SAL_N_ELEMENTS( mso_sptActionButtonDocumentCalc ), + std::span(mso_sptActionButtonDocumentCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -2995,7 +2994,7 @@ const mso_CustomShape msoActionButtonSound = { std::span(mso_sptActionButtonSoundVert), const_cast(mso_sptActionButtonSoundSegm), sizeof( mso_sptActionButtonSoundSegm ) >> 1, - const_cast(mso_sptActionButtonSoundCalc), SAL_N_ELEMENTS( mso_sptActionButtonSoundCalc ), + std::span(mso_sptActionButtonSoundCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -3080,7 +3079,7 @@ const mso_CustomShape msoActionButtonMovie = { std::span(mso_sptActionButtonMovieVert), const_cast(mso_sptActionButtonMovieSegm), sizeof( mso_sptActionButtonMovieSegm ) >> 1, - const_cast(mso_sptActionButtonMovieCalc), SAL_N_ELEMENTS( mso_sptActionButtonMovieCalc ), + std::span(mso_sptActionButtonMovieCalc), const_cast(mso_sptDefault1400), const_cast(mso_sptActionButtonTextRect), SAL_N_ELEMENTS( mso_sptActionButtonTextRect ), 21600, 21600, @@ -3123,7 +3122,7 @@ const mso_CustomShape msoSmileyFace = { std::span(mso_sptSmileyFaceVert), const_cast(mso_sptSmileyFaceSegm), sizeof( mso_sptSmileyFaceSegm ) >> 1, - const_cast(mso_sptSmileyFaceCalc), SAL_N_ELEMENTS( mso_sptSmileyFaceCalc ), + std::span(mso_sptSmileyFaceCalc), const_cast(mso_sptSmileyFaceDefault), const_cast(mso_sptEllipseTextRect), SAL_N_ELEMENTS( mso_sptEllipseTextRect ), 21600, 21600, @@ -3155,7 +3154,7 @@ const mso_CustomShape msoDonut = { std::span(mso_sptDonutVert), const_cast(mso_sptDonutSegm), sizeof( mso_sptDonutSegm ) >> 1, - const_cast(mso_sptDonutCalc), SAL_N_ELEMENTS( mso_sptDonutCalc ), + std::span(mso_sptDonutCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptEllipseTextRect), SAL_N_ELEMENTS( mso_sptEllipseTextRect ), 21600, 21600, @@ -3204,7 +3203,7 @@ const mso_CustomShape msoNoSmoking = { std::span(mso_sptNoSmokingVert), const_cast(mso_sptNoSmokingSegm), sizeof( mso_sptNoSmokingSegm ) >> 1, - const_cast(mso_sptNoSmokingCalc), SAL_N_ELEMENTS( mso_sptNoSmokingCalc ), + std::span(mso_sptNoSmokingCalc), const_cast(mso_sptDefault2700), const_cast(mso_sptEllipseTextRect), SAL_N_ELEMENTS( mso_sptEllipseTextRect ), 21600, 21600, @@ -3247,7 +3246,7 @@ const mso_CustomShape msoBlockArc = { std::span(mso_sptBlockArcVert), const_cast(mso_sptBlockArcSegm), sizeof( mso_sptBlockArcSegm ) >> 1, - const_cast(mso_sptBlockArcCalc), SAL_N_ELEMENTS( mso_sptBlockArcCalc ), + std::span(mso_sptBlockArcCalc), const_cast(mso_sptBlockArcDefault), nullptr, 0, 21600, 21600, @@ -3311,7 +3310,7 @@ const mso_CustomShape msoHeart = { std::span(mso_sptHeartVert), const_cast(mso_sptHeartSegm), sizeof( mso_sptHeartSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptHeartTextRect), SAL_N_ELEMENTS( mso_sptHeartTextRect ), 21615, 21602, @@ -3339,7 +3338,7 @@ const mso_CustomShape msoLightningBold = { std::span(mso_sptLightningBoldVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptLightningBoldTextRect), SAL_N_ELEMENTS( mso_sptLightningBoldTextRect ), 21600, 21600, @@ -3443,7 +3442,7 @@ const mso_CustomShape msoSun = { std::span(mso_sptSunVert), const_cast(mso_sptSunSegm), sizeof( mso_sptSunSegm ) >> 1, - const_cast(mso_sptSunCalc), SAL_N_ELEMENTS( mso_sptSunCalc ), + std::span(mso_sptSunCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptSunTextRect), SAL_N_ELEMENTS( mso_sptSunTextRect ), 21600, 21600, @@ -3495,7 +3494,7 @@ const mso_CustomShape msoMoon = { std::span(mso_sptMoonVert), const_cast(mso_sptMoonSegm), sizeof( mso_sptMoonSegm ) >> 1, - const_cast(mso_sptMoonCalc), SAL_N_ELEMENTS( mso_sptMoonCalc ), + std::span(mso_sptMoonCalc), const_cast(mso_sptDefault10800), const_cast(mso_sptMoonTextRect), SAL_N_ELEMENTS( mso_sptMoonTextRect ), 21600, 21600, @@ -3554,7 +3553,7 @@ const mso_CustomShape msoBracketPair = { std::span(mso_sptBracketPairVert), const_cast(mso_sptBracketPairSegm), sizeof( mso_sptBracketPairSegm ) >> 1, - const_cast(mso_sptBracketPairCalc), SAL_N_ELEMENTS( mso_sptBracketPairCalc ), + std::span(mso_sptBracketPairCalc), const_cast(mso_sptDefault3700), const_cast(mso_sptBracketPairTextRect), SAL_N_ELEMENTS( mso_sptBracketPairTextRect ), 21600, 21600, @@ -3580,7 +3579,7 @@ const mso_CustomShape msoPlaque = { std::span(mso_sptBracketPairVert), const_cast(mso_sptPlaqueSegm), sizeof( mso_sptPlaqueSegm ) >> 1, - const_cast(mso_sptBracketPairCalc), SAL_N_ELEMENTS( mso_sptBracketPairCalc ), + std::span(mso_sptBracketPairCalc), const_cast(mso_sptDefault3600), const_cast(mso_sptPlaqueTextRect), SAL_N_ELEMENTS( mso_sptPlaqueTextRect ), 21600, 21600, @@ -3638,7 +3637,7 @@ const mso_CustomShape msoBracePair = { std::span(mso_sptBracePairVert), const_cast(mso_sptBracePairSegm), sizeof( mso_sptBracePairSegm ) >> 1, - const_cast(mso_sptBracePairCalc), SAL_N_ELEMENTS( mso_sptBracePairCalc ), + std::span(mso_sptBracePairCalc), const_cast(mso_sptDefault1800), const_cast(mso_sptBracePairTextRect), SAL_N_ELEMENTS( mso_sptBracePairTextRect ), 21600, 21600, @@ -3681,7 +3680,7 @@ const mso_CustomShape msoLeftBracket = { std::span(mso_sptLeftBracketVert), const_cast(mso_sptBracketSegm), sizeof( mso_sptBracketSegm ) >> 1, - const_cast(mso_sptBracketCalc), SAL_N_ELEMENTS( mso_sptBracketCalc ), + std::span(mso_sptBracketCalc), const_cast(mso_sptDefault1800), const_cast(mso_sptLeftBracketTextRect), SAL_N_ELEMENTS( mso_sptLeftBracketTextRect ), 21600, 21600, @@ -3711,7 +3710,7 @@ const mso_CustomShape msoRightBracket = { std::span(mso_sptRightBracketVert), const_cast(mso_sptBracketSegm), sizeof( mso_sptBracketSegm ) >> 1, - const_cast(mso_sptBracketCalc), SAL_N_ELEMENTS( mso_sptBracketCalc ), + std::span(mso_sptBracketCalc), const_cast(mso_sptDefault1800), const_cast(mso_sptRightBracketTextRect), SAL_N_ELEMENTS( mso_sptRightBracketTextRect ), 21600, 21600, @@ -3767,7 +3766,7 @@ const mso_CustomShape msoLeftBrace = // adj value0 0 -> 5400 { // adj value1 0 -> 21600 std::span(mso_sptLeftBraceVert), const_cast(mso_sptBraceSegm), sizeof( mso_sptBraceSegm ) >> 1, - const_cast(mso_sptBraceCalc), SAL_N_ELEMENTS( mso_sptBraceCalc ), + std::span(mso_sptBraceCalc), const_cast(mso_sptBraceDefault), const_cast(mso_sptLeftBraceTextRect), SAL_N_ELEMENTS( mso_sptLeftBraceTextRect ), 21600, 21600, @@ -3800,7 +3799,7 @@ const mso_CustomShape msoRightBrace = // adj value0 0 -> 5400 { // adj value1 0 -> 21600 std::span(mso_sptRightBraceVert), const_cast(mso_sptBraceSegm), sizeof( mso_sptBraceSegm ) >> 1, - const_cast(mso_sptBraceCalc), SAL_N_ELEMENTS( mso_sptBraceCalc ), + std::span(mso_sptBraceCalc), const_cast(mso_sptBraceDefault), const_cast(mso_sptRightBraceTextRect), SAL_N_ELEMENTS( mso_sptRightBraceTextRect ), 21600, 21600, @@ -3830,7 +3829,7 @@ const mso_CustomShape msoIrregularSeal1 = { std::span(mso_sptIrregularSeal1Vert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptIrregularSeal1TextRect), SAL_N_ELEMENTS( mso_sptIrregularSeal1TextRect ), 21600, 21600, @@ -3862,7 +3861,7 @@ const mso_CustomShape msoIrregularSeal2 = { std::span(mso_sptIrregularSeal2Vert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptIrregularSeal2TextRect), SAL_N_ELEMENTS( mso_sptIrregularSeal2TextRect ), 21600, 21600, @@ -3898,7 +3897,7 @@ const mso_CustomShape msoSeal4 = { std::span(mso_sptSeal4Vert), nullptr, 0, - const_cast(mso_sptSeal4Calc), SAL_N_ELEMENTS( mso_sptSeal4Calc ), + std::span(mso_sptSeal4Calc), const_cast(mso_sptDefault8100), const_cast(mso_sptSeal4TextRect), SAL_N_ELEMENTS( mso_sptSeal4TextRect ), 21600, 21600, @@ -3926,7 +3925,7 @@ const mso_CustomShape msoStar = { std::span(mso_sptStarVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptStarTextRect), SAL_N_ELEMENTS( mso_sptStarTextRect ), 21600, 21600, @@ -4055,7 +4054,7 @@ const mso_CustomShape msoSeal8 = { std::span(mso_sptSeal8Vert), nullptr, 0, - const_cast(mso_sptSeal24Calc), SAL_N_ELEMENTS( mso_sptSeal24Calc ), + std::span(mso_sptSeal24Calc), const_cast(mso_sptDefault2500), const_cast(mso_sptSealTextRect), SAL_N_ELEMENTS( mso_sptSealTextRect ), 21600, 21600, @@ -4151,7 +4150,7 @@ const mso_CustomShape msoSeal16 = { std::span(mso_sptSeal16Vert), nullptr, 0, - const_cast(mso_sptSeal16Calc), SAL_N_ELEMENTS( mso_sptSeal16Calc ), + std::span(mso_sptSeal16Calc), const_cast(mso_sptDefault2500), const_cast(mso_sptSealTextRect), SAL_N_ELEMENTS( mso_sptSealTextRect ), 21600, 21600, @@ -4179,7 +4178,7 @@ const mso_CustomShape msoSeal24 = { std::span(mso_sptSeal24Vert), nullptr, 0, - const_cast(mso_sptSeal24Calc), SAL_N_ELEMENTS( mso_sptSeal24Calc ), + std::span(mso_sptSeal24Calc), const_cast(mso_sptDefault2500), const_cast(mso_sptSealTextRect), SAL_N_ELEMENTS( mso_sptSealTextRect ), 21600, 21600, @@ -4347,7 +4346,7 @@ const mso_CustomShape msoSeal32 = { std::span(mso_sptSeal32Vert), nullptr, 0, - const_cast(mso_sptSeal32Calc), SAL_N_ELEMENTS( mso_sptSeal32Calc ), + std::span(mso_sptSeal32Calc), const_cast(mso_sptDefault2500), const_cast(mso_sptSealTextRect), SAL_N_ELEMENTS( mso_sptSealTextRect ), 21600, 21600, @@ -4444,7 +4443,7 @@ const mso_CustomShape msoRibbon2 = { std::span(mso_sptRibbon2Vert), const_cast(mso_sptRibbon2Segm), sizeof( mso_sptRibbon2Segm ) >> 1, - const_cast(mso_sptRibbon2Calc), SAL_N_ELEMENTS( mso_sptRibbon2Calc ), + std::span(mso_sptRibbon2Calc), const_cast(mso_sptRibbon2Default), const_cast(mso_sptRibbon2TextRect), SAL_N_ELEMENTS( mso_sptRibbon2TextRect ), 21600, 21600, @@ -4525,7 +4524,7 @@ const mso_CustomShape msoRibbon = { std::span(mso_sptRibbonVert), const_cast(mso_sptRibbonSegm), sizeof( mso_sptRibbonSegm ) >> 1, - const_cast(mso_sptRibbonCalc), SAL_N_ELEMENTS( mso_sptRibbonCalc ), + std::span(mso_sptRibbonCalc), const_cast(mso_sptRibbonDefault), const_cast(mso_sptRibbonTextRect), SAL_N_ELEMENTS( mso_sptRibbonTextRect ), 21600, 21600, @@ -4670,7 +4669,7 @@ const mso_CustomShape msosptEllipseRibbon = { std::span(mso_sptEllipseRibbonVert), const_cast(mso_sptEllipseRibbonSegm), sizeof( mso_sptEllipseRibbonSegm ) >> 1, - const_cast(mso_sptEllipseRibbonCalc), SAL_N_ELEMENTS( mso_sptEllipseRibbonCalc ), + std::span(mso_sptEllipseRibbonCalc), const_cast(mso_sptEllipseRibbonDefault), const_cast(mso_sptEllipseRibbonTextRect), SAL_N_ELEMENTS( mso_sptEllipseRibbonTextRect ), 21600, 21600, @@ -4810,7 +4809,7 @@ const mso_CustomShape msosptEllipseRibbon2 = { std::span(mso_sptEllipseRibbon2Vert), const_cast(mso_sptEllipseRibbon2Segm), sizeof( mso_sptEllipseRibbon2Segm ) >> 1, - const_cast(mso_sptEllipseRibbon2Calc), SAL_N_ELEMENTS( mso_sptEllipseRibbon2Calc ), + std::span(mso_sptEllipseRibbon2Calc), const_cast(mso_sptEllipseRibbon2Default), const_cast(mso_sptEllipseRibbon2TextRect), SAL_N_ELEMENTS( mso_sptEllipseRibbon2TextRect ), 21600, 21600, @@ -4876,7 +4875,7 @@ const mso_CustomShape msoVerticalScroll = { std::span(mso_sptVerticalScrollVert), const_cast(mso_sptVerticalScrollSegm), sizeof( mso_sptVerticalScrollSegm ) >> 1, - const_cast(mso_sptScrollCalc), SAL_N_ELEMENTS( mso_sptScrollCalc ), + std::span(mso_sptScrollCalc), const_cast(mso_sptDefault2700), const_cast(mso_sptScrollTextRect), SAL_N_ELEMENTS( mso_sptScrollTextRect ), 21600, 21600, @@ -4922,7 +4921,7 @@ const mso_CustomShape msoHorizontalScroll = { std::span(mso_sptHorizontalScrollVert), const_cast(mso_sptHorizontalScrollSegm), sizeof( mso_sptHorizontalScrollSegm ) >> 1, - const_cast(mso_sptScrollCalc), SAL_N_ELEMENTS( mso_sptScrollCalc ), + std::span(mso_sptScrollCalc), const_cast(mso_sptDefault2700), const_cast(mso_sptScrollTextRect), SAL_N_ELEMENTS( mso_sptScrollTextRect ), 21600, 21600, @@ -4939,7 +4938,7 @@ const mso_CustomShape msoFlowChartProcess = { std::span(mso_sptFlowChartProcessVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, nullptr, 0, 21600, 21600, @@ -4976,7 +4975,7 @@ const mso_CustomShape msoFlowChartAlternateProcess = { std::span(mso_sptFlowChartAlternateProcessVert), const_cast(mso_sptFlowChartAlternateProcessSegm), sizeof( mso_sptFlowChartAlternateProcessSegm ) >> 1, - const_cast(mso_sptFlowChartAlternateProcessCalc), SAL_N_ELEMENTS( mso_sptFlowChartAlternateProcessCalc ), + std::span(mso_sptFlowChartAlternateProcessCalc), nullptr, const_cast(mso_sptFlowChartAlternateProcessTextRect), SAL_N_ELEMENTS( mso_sptFlowChartAlternateProcessTextRect ), 21600, 21600, @@ -4997,7 +4996,7 @@ const mso_CustomShape msoFlowChartDecision = { std::span(mso_sptFlowChartDecisionVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartDecisionTextRect), SAL_N_ELEMENTS( mso_sptFlowChartDecisionTextRect ), 21600, 21600, @@ -5022,7 +5021,7 @@ const mso_CustomShape msoFlowChartInputOutput = { std::span(mso_sptFlowChartInputOutputVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartInputOutputTextRect), SAL_N_ELEMENTS( mso_sptFlowChartInputOutputTextRect ), 21600, 21600, @@ -5053,7 +5052,7 @@ const mso_CustomShape msoFlowChartPredefinedProcess = { std::span(mso_sptFlowChartPredefinedProcessVert), const_cast(mso_sptFlowChartPredefinedProcessSegm), sizeof( mso_sptFlowChartPredefinedProcessSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartPredefinedProcessTextRect), SAL_N_ELEMENTS( mso_sptFlowChartPredefinedProcessTextRect ), 21600, 21600, @@ -5084,7 +5083,7 @@ const mso_CustomShape msoFlowChartInternalStorage = { std::span(mso_sptFlowChartInternalStorageVert), const_cast(mso_sptFlowChartInternalStorageSegm), sizeof( mso_sptFlowChartInternalStorageSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartInternalStorageTextRect), SAL_N_ELEMENTS( mso_sptFlowChartInternalStorageTextRect ), 21600, 21600, @@ -5115,7 +5114,7 @@ const mso_CustomShape msoFlowChartDocument = { std::span(mso_sptFlowChartDocumentVert), const_cast(mso_sptFlowChartDocumentSegm), sizeof( mso_sptFlowChartDocumentSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartDocumentTextRect), SAL_N_ELEMENTS( mso_sptFlowChartDocumentTextRect ), 21600, 21600, @@ -5154,7 +5153,7 @@ const mso_CustomShape msoFlowChartMultidocument = { std::span(mso_sptFlowChartMultidocumentVert), const_cast(mso_sptFlowChartMultidocumentSegm), sizeof( mso_sptFlowChartMultidocumentSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartMultidocumentTextRect), SAL_N_ELEMENTS( mso_sptFlowChartMultidocumentTextRect ), 21600, 21600, @@ -5180,7 +5179,7 @@ const mso_CustomShape msoFlowChartTerminator = { std::span(mso_sptFlowChartTerminatorVert), const_cast(mso_sptFlowChartTerminatorSegm), sizeof( mso_sptFlowChartTerminatorSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartTerminatorTextRect), SAL_N_ELEMENTS( mso_sptFlowChartTerminatorTextRect ), 21600, 21600, @@ -5202,7 +5201,7 @@ const mso_CustomShape msoFlowChartPreparation = { std::span(mso_sptFlowChartPreparationVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartPreparationTextRect), SAL_N_ELEMENTS( mso_sptFlowChartPreparationTextRect ), 21600, 21600, @@ -5227,7 +5226,7 @@ const mso_CustomShape msoFlowChartManualInput = { std::span(mso_sptFlowChartManualInputVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartManualInputTextRect), SAL_N_ELEMENTS( mso_sptFlowChartManualInputTextRect ), 21600, 21600, @@ -5252,7 +5251,7 @@ const mso_CustomShape msoFlowChartManualOperation = { std::span(mso_sptFlowChartManualOperationVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartManualOperationTextRect), SAL_N_ELEMENTS( mso_sptFlowChartManualOperationTextRect ), 21600, 21600, @@ -5277,7 +5276,7 @@ const mso_CustomShape msoFlowChartConnector = { std::span(mso_sptFlowChartConnectorVert), const_cast(mso_sptFlowChartConnectorSegm), sizeof( mso_sptFlowChartConnectorSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartConnectorTextRect), SAL_N_ELEMENTS( mso_sptFlowChartConnectorTextRect ), 21600, 21600, @@ -5299,7 +5298,7 @@ const mso_CustomShape msoFlowChartOffpageConnector = { std::span(mso_sptFlowChartOffpageConnectorVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartOffpageConnectorTextRect), SAL_N_ELEMENTS( mso_sptFlowChartOffpageConnectorTextRect ), 21600, 21600, @@ -5321,7 +5320,7 @@ const mso_CustomShape msoFlowChartPunchedCard = { std::span(mso_sptFlowChartPunchedCardVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartPunchedCardTextRect), SAL_N_ELEMENTS( mso_sptFlowChartPunchedCardTextRect ), 21600, 21600, @@ -5359,7 +5358,7 @@ const mso_CustomShape msoFlowChartPunchedTape = { std::span(mso_sptFlowChartPunchedTapeVert), const_cast(mso_sptFlowChartPunchedTapeSegm), sizeof( mso_sptFlowChartPunchedTapeSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartPunchedTapeTextRect), SAL_N_ELEMENTS( mso_sptFlowChartPunchedTapeTextRect ), 21600, 21600, @@ -5392,7 +5391,7 @@ const mso_CustomShape msoFlowChartSummingJunction = { std::span(mso_sptFlowChartSummingJunctionVert), const_cast(mso_sptFlowChartSummingJunctionSegm), sizeof( mso_sptFlowChartSummingJunctionSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartSummingJunctionTextRect), SAL_N_ELEMENTS( mso_sptFlowChartSummingJunctionTextRect ), 21600, 21600, @@ -5423,7 +5422,7 @@ const mso_CustomShape msoFlowChartOr = { std::span(mso_sptFlowChartOrVert), const_cast(mso_sptFlowChartOrSegm), sizeof( mso_sptFlowChartOrSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartOrTextRect), SAL_N_ELEMENTS( mso_sptFlowChartOrTextRect ), 21600, 21600, @@ -5448,7 +5447,7 @@ const mso_CustomShape msoFlowChartCollate = { std::span(mso_sptFlowChartCollateVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartCollateTextRect), SAL_N_ELEMENTS( mso_sptFlowChartCollateTextRect ), 21600, 21600, @@ -5476,7 +5475,7 @@ const mso_CustomShape msoFlowChartSort = { std::span(mso_sptFlowChartSortVert), const_cast(mso_sptFlowChartSortSegm), sizeof( mso_sptFlowChartSortSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartSortTextRect), SAL_N_ELEMENTS( mso_sptFlowChartSortTextRect ), 21600, 21600, @@ -5501,7 +5500,7 @@ const mso_CustomShape msoFlowChartExtract = { std::span(mso_sptFlowChartExtractVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartExtractTextRect), SAL_N_ELEMENTS( mso_sptFlowChartExtractTextRect ), 21600, 21600, @@ -5522,7 +5521,7 @@ const mso_CustomShape msoFlowChartMerge = { std::span(mso_sptFlowChartMergeVert), nullptr, 0, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartMergeTextRect), SAL_N_ELEMENTS( mso_sptFlowChartMergeTextRect ), 21600, 21600, @@ -5552,7 +5551,7 @@ const mso_CustomShape msoFlowChartOnlineStorage = { std::span(mso_sptFlowChartOnlineStorageVert), const_cast(mso_sptFlowChartOnlineStorageSegm), sizeof( mso_sptFlowChartOnlineStorageSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartOnlineStorageTextRect), SAL_N_ELEMENTS( mso_sptFlowChartOnlineStorageTextRect ), 21600, 21600, @@ -5578,7 +5577,7 @@ const mso_CustomShape msoFlowChartDelay = { std::span(mso_sptFlowChartDelayVert), const_cast(mso_sptFlowChartDelaySegm), sizeof( mso_sptFlowChartDelaySegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartDelayTextRect), SAL_N_ELEMENTS( mso_sptFlowChartDelayTextRect ), 21600, 21600, @@ -5607,7 +5606,7 @@ const mso_CustomShape msoFlowChartMagneticTape = { std::span(mso_sptFlowChartMagneticTapeVert), const_cast(mso_sptFlowChartMagneticTapeSegm), sizeof( mso_sptFlowChartMagneticTapeSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartMagneticTapeTextRect), SAL_N_ELEMENTS( mso_sptFlowChartMagneticTapeTextRect ), 21600, 21600, @@ -5640,7 +5639,7 @@ const mso_CustomShape msoFlowChartMagneticDisk = { std::span(mso_sptFlowChartMagneticDiskVert), const_cast(mso_sptFlowChartMagneticDiskSegm), sizeof( mso_sptFlowChartMagneticDiskSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartMagneticDiskTextRect), SAL_N_ELEMENTS( mso_sptFlowChartMagneticDiskTextRect ), 21600, 21600, @@ -5673,7 +5672,7 @@ const mso_CustomShape msoFlowChartMagneticDrum = { std::span(mso_sptFlowChartMagneticDrumVert), const_cast(mso_sptFlowChartMagneticDrumSegm), sizeof( mso_sptFlowChartMagneticDrumSegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartMagneticDrumTextRect), SAL_N_ELEMENTS( mso_sptFlowChartMagneticDrumTextRect ), 21600, 21600, @@ -5699,7 +5698,7 @@ const mso_CustomShape msoFlowChartDisplay = { std::span(mso_sptFlowChartDisplayVert), const_cast(mso_sptFlowChartDisplaySegm), sizeof( mso_sptFlowChartDisplaySegm ) >> 1, - nullptr, 0, + std::span(), nullptr, const_cast(mso_sptFlowChartDisplayTextRect), SAL_N_ELEMENTS( mso_sptFlowChartDisplayTextRect ), 21600, 21600, @@ -5792,7 +5791,7 @@ const mso_CustomShape msoWedgeRectCallout = { std::span(mso_sptWedgeRectCalloutVert), nullptr, 0, - const_cast(mso_sptWedgeRectCalloutCalc), SAL_N_ELEMENTS( mso_sptWedgeRectCalloutCalc ), + std::span(mso_sptWedgeRectCalloutCalc), const_cast(mso_sptWedgeRectCalloutDefault), const_cast(mso_sptWedgeRectCalloutTextRect), SAL_N_ELEMENTS( mso_sptWedgeRectCalloutTextRect ), 21600, 21600, @@ -5828,7 +5827,7 @@ const mso_CustomShape msoWedgeRRectCallout = { std::span(mso_sptWedgeRRectCalloutVert), const_cast(mso_sptWedgeRRectCalloutSegm), sizeof( mso_sptWedgeRRectCalloutSegm ) >> 1, - const_cast(mso_sptWedgeRectCalloutCalc), SAL_N_ELEMENTS( mso_sptWedgeRectCalloutCalc ), + std::span(mso_sptWedgeRectCalloutCalc), const_cast(mso_sptWedgeRectCalloutDefault), const_cast(mso_sptWedgeRRectCalloutTextRect), SAL_N_ELEMENTS( mso_sptWedgeRRectCalloutTextRect ), 21600, 21600, @@ -5867,7 +5866,7 @@ const mso_CustomShape msoBalloon = { std::span(mso_sptBalloonVert), const_cast(mso_sptBalloonSegm), sizeof( mso_sptBalloonSegm ) >> 1, - const_cast(mso_sptWedgeRectCalloutCalc), SAL_N_ELEMENTS( mso_sptWedgeRectCalloutCalc ), + std::span(mso_sptWedgeRectCalloutCalc), const_cast(mso_sptWedgeRectCalloutDefault), const_cast(mso_sptBalloonTextRect), SAL_N_ELEMENTS( mso_sptBalloonTextRect ), 21600, 21600, @@ -5926,7 +5925,7 @@ const mso_CustomShape msoWedgeEllipseCallout = { std::span(mso_sptWedgeEllipseCalloutVert), const_cast(mso_sptWedgeEllipseCalloutSegm), sizeof( mso_sptWedgeEllipseCalloutSegm ) >> 1, - const_cast(mso_sptWedgeEllipseCalloutCalc), SAL_N_ELEMENTS( mso_sptWedgeEllipseCalloutCalc ), + std::span(mso_sptWedgeEllipseCalloutCalc), const_cast(mso_sptWedgeEllipseCalloutDefault), const_cast(mso_sptWedgeEllipseCalloutTextRect), SAL_N_ELEMENTS( mso_sptWedgeEllipseCalloutTextRect ), 21600, 21600, @@ -6031,7 +6030,7 @@ const mso_CustomShape msoCloudCallout = { std::span(mso_sptCloudCalloutVert), const_cast(mso_sptCloudCalloutSegm), sizeof( mso_sptCloudCalloutSegm ) >> 1, - const_cast(mso_sptCloudCalloutCalc), SAL_N_ELEMENTS( mso_sptCloudCalloutCalc ), + std::span(mso_sptCloudCalloutCalc), const_cast(mso_sptCloudCalloutDefault), const_cast(mso_sptCloudCalloutTextRect), SAL_N_ELEMENTS( mso_sptCloudCalloutTextRect ), 21600, 21600, @@ -6109,7 +6108,7 @@ const mso_CustomShape msoWave = { std::span(mso_sptWaveVert), const_cast(mso_sptWaveSegm), sizeof( mso_sptWaveSegm ) >> 1, - const_cast(mso_sptWaveCalc), SAL_N_ELEMENTS( mso_sptWaveCalc ), + std::span(mso_sptWaveCalc), const_cast(mso_sptWaveDefault), const_cast(mso_sptWaveTextRect), SAL_N_ELEMENTS( mso_sptWaveTextRect ), 21600, 21600, @@ -6191,7 +6190,7 @@ const mso_CustomShape msoDoubleWave = { std::span(mso_sptDoubleWaveVert), const_cast(mso_sptDoubleWaveSegm), sizeof( mso_sptDoubleWaveSegm ) >> 1, - const_cast(mso_sptDoubleWaveCalc), SAL_N_ELEMENTS( mso_sptDoubleWaveCalc ), + std::span(mso_sptDoubleWaveCalc), const_cast(mso_sptDoubleWaveDefault), const_cast(mso_sptDoubleWaveTextRect), SAL_N_ELEMENTS( mso_sptDoubleWaveTextRect ), 21600, 21600, @@ -6307,7 +6306,7 @@ const mso_CustomShape msoTextPlainText = { std::span(mso_sptTextPlainTextVert), const_cast(mso_sptTextPlainTextSegm), sizeof( mso_sptTextPlainTextSegm ) >> 1, - const_cast(mso_sptTextPlainTextCalc), SAL_N_ELEMENTS( mso_sptTextPlainTextCalc ), + std::span(mso_sptTextPlainTextCalc), const_cast(mso_sptDefault10800), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6344,7 +6343,7 @@ const mso_CustomShape msoTextStop = { std::span(mso_sptTextStopVert), const_cast(mso_sptTextStopSegm), sizeof( mso_sptTextStopSegm ) >> 1, - const_cast(mso_sptTextStopCalc), SAL_N_ELEMENTS( mso_sptTextStopCalc ), + std::span(mso_sptTextStopCalc), const_cast(mso_sptTextStopDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6375,7 +6374,7 @@ const mso_CustomShape msoTextTriangle = { std::span(mso_sptTextTriangleVert), const_cast(mso_sptTextTriangleSegm), sizeof( mso_sptTextTriangleSegm ) >> 1, - const_cast(mso_sptTextTriangleCalc), SAL_N_ELEMENTS( mso_sptTextTriangleCalc ), + std::span(mso_sptTextTriangleCalc), const_cast(mso_sptDefault10800), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6396,7 +6395,7 @@ const mso_CustomShape msoTextTriangleInverted = { std::span(mso_sptTextTriangleInvertedVert), const_cast(mso_sptTextTriangleInvertedSegm), sizeof( mso_sptTextTriangleInvertedSegm ) >> 1, - const_cast(mso_sptTextTriangleCalc), SAL_N_ELEMENTS( mso_sptTextTriangleCalc ), + std::span(mso_sptTextTriangleCalc), const_cast(mso_sptDefault10800), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6428,7 +6427,7 @@ const mso_CustomShape msoTextChevron = { std::span(mso_sptTextChevronVert), const_cast(mso_sptTextChevronSegm), sizeof( mso_sptTextChevronSegm ) >> 1, - const_cast(mso_sptTextChevronCalc), SAL_N_ELEMENTS( mso_sptTextChevronCalc ), + std::span(mso_sptTextChevronCalc), const_cast(mso_sptDefault5400), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6460,7 +6459,7 @@ const mso_CustomShape msoTextChevronInverted = { std::span(mso_sptTextChevronInvertedVert), const_cast(mso_sptTextChevronInvertedSegm), sizeof( mso_sptTextChevronInvertedSegm ) >> 1, - const_cast(mso_sptTextChevronInvertedCalc), SAL_N_ELEMENTS( mso_sptTextChevronInvertedCalc ), + std::span(mso_sptTextChevronInvertedCalc), const_cast(mso_sptDefault16200), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6501,7 +6500,7 @@ const mso_CustomShape msoTextRingInside = { std::span(mso_sptTextRingInsideVert), const_cast(mso_sptTextRingInsideSegm), sizeof( mso_sptTextRingInsideSegm ) >> 1, - const_cast(mso_sptTextRingInsideCalc), SAL_N_ELEMENTS( mso_sptTextRingInsideCalc ), + std::span(mso_sptTextRingInsideCalc), const_cast(mso_sptDefault13500), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6536,7 +6535,7 @@ const mso_CustomShape msoTextRingOutside = { std::span(mso_sptTextRingOutsideVert), const_cast(mso_sptTextRingOutsideSegm), sizeof( mso_sptTextRingOutsideSegm ) >> 1, - const_cast(mso_sptTextRingOutsideCalc), SAL_N_ELEMENTS( mso_sptTextRingOutsideCalc ), + std::span(mso_sptTextRingOutsideCalc), const_cast(mso_sptDefault13500), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6568,7 +6567,7 @@ const mso_CustomShape msoTextFadeRight = { std::span(mso_sptTextFadeRightVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextFadeCalc), SAL_N_ELEMENTS( mso_sptTextFadeCalc ), + std::span(mso_sptTextFadeCalc), const_cast(mso_sptDefault7200), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6590,7 +6589,7 @@ const mso_CustomShape msoTextFadeLeft = { std::span(mso_sptTextFadeLeftVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextFadeCalc), SAL_N_ELEMENTS( mso_sptTextFadeCalc ), + std::span(mso_sptTextFadeCalc), const_cast(mso_sptDefault7200), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6612,7 +6611,7 @@ const mso_CustomShape msoTextFadeUp = { std::span(mso_sptTextFadeUpVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextFadeCalc), SAL_N_ELEMENTS( mso_sptTextFadeCalc ), + std::span(mso_sptTextFadeCalc), const_cast(mso_sptDefault7200), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6634,7 +6633,7 @@ const mso_CustomShape msoTextFadeDown = { std::span(mso_sptTextFadeDownVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextFadeCalc), SAL_N_ELEMENTS( mso_sptTextFadeCalc ), + std::span(mso_sptTextFadeCalc), const_cast(mso_sptDefault7200), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6656,7 +6655,7 @@ const mso_CustomShape msoTextSlantUp = { std::span(mso_sptTextSlantUpVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextFadeCalc), SAL_N_ELEMENTS( mso_sptTextFadeCalc ), + std::span(mso_sptTextFadeCalc), const_cast(mso_sptDefault12000), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6678,7 +6677,7 @@ const mso_CustomShape msoTextSlantDown = { std::span(mso_sptTextSlantDownVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextFadeCalc), SAL_N_ELEMENTS( mso_sptTextFadeCalc ), + std::span(mso_sptTextFadeCalc), const_cast(mso_sptDefault12000), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6706,7 +6705,7 @@ const mso_CustomShape msoTextCascadeUp = { std::span(mso_sptTextCascadeUpVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextCascadeCalc), SAL_N_ELEMENTS( mso_sptTextCascadeCalc ), + std::span(mso_sptTextCascadeCalc), const_cast(mso_sptDefault9600), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6728,7 +6727,7 @@ const mso_CustomShape msoTextCascadeDown = { std::span(mso_sptTextCascadeDownVert), const_cast(mso_sptTextFadeSegm), sizeof( mso_sptTextFadeSegm ) >> 1, - const_cast(mso_sptTextCascadeCalc), SAL_N_ELEMENTS( mso_sptTextCascadeCalc ), + std::span(mso_sptTextCascadeCalc), const_cast(mso_sptDefault9600), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6766,7 +6765,7 @@ const mso_CustomShape msoTextArchUpCurve = { std::span(mso_sptTextArchUpCurveVert), const_cast(mso_sptTextArchUpCurveSegm), sizeof( mso_sptTextArchUpCurveSegm ) >> 1, - const_cast(mso_sptTextArchCurveCalc), SAL_N_ELEMENTS( mso_sptTextArchCurveCalc ), + std::span(mso_sptTextArchCurveCalc), const_cast(mso_sptTextArchUpCurveDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6796,7 +6795,7 @@ const mso_CustomShape msoTextArchDownCurve = { std::span(mso_sptTextArchDownCurveVert), const_cast(mso_sptTextArchDownCurveSegm), sizeof( mso_sptTextArchDownCurveSegm ) >> 1, - const_cast(mso_sptTextArchCurveCalc), SAL_N_ELEMENTS( mso_sptTextArchCurveCalc ), + std::span(mso_sptTextArchCurveCalc), const_cast(mso_sptTextArchDownCurveDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6834,7 +6833,7 @@ const mso_CustomShape msoTextCircleCurve = { std::span(mso_sptTextCircleCurveVert), const_cast(mso_sptTextCircleCurveSegm), sizeof( mso_sptTextCircleCurveSegm ) >> 1, - const_cast(mso_sptTextCircleCurveCalc), SAL_N_ELEMENTS( mso_sptTextCircleCurveCalc ), + std::span(mso_sptTextCircleCurveCalc), const_cast(mso_sptTextCircleCurveDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6877,7 +6876,7 @@ const mso_CustomShape msoTextButtonCurve = { std::span(mso_sptTextButtonCurveVert), const_cast(mso_sptTextButtonCurveSegm), sizeof( mso_sptTextButtonCurveSegm ) >> 1, - const_cast(mso_sptTextButtonCurveCalc), SAL_N_ELEMENTS( mso_sptTextButtonCurveCalc ), + std::span(mso_sptTextButtonCurveCalc), const_cast(mso_sptTextButtonCurveDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6923,7 +6922,7 @@ const mso_CustomShape msoTextArchUpPour = { std::span(mso_sptTextArchUpPourVert), const_cast(mso_sptTextArchUpPourSegm), sizeof( mso_sptTextArchUpPourSegm ) >> 1, - const_cast(mso_sptTextArchPourCalc), SAL_N_ELEMENTS( mso_sptTextArchPourCalc ), + std::span(mso_sptTextArchPourCalc), const_cast(mso_sptTextArchUpPourDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6949,7 +6948,7 @@ const mso_CustomShape msoTextArchDownPour = { std::span(mso_sptTextArchDownPourVert), const_cast(mso_sptTextArchDownPourSegm), sizeof( mso_sptTextArchDownPourSegm ) >> 1, - const_cast(mso_sptTextArchPourCalc), SAL_N_ELEMENTS( mso_sptTextArchPourCalc ), + std::span(mso_sptTextArchPourCalc), const_cast(mso_sptTextArchDownPourDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -6996,7 +6995,7 @@ const mso_CustomShape msoTextCirclePour = { std::span(mso_sptTextCirclePourVert), const_cast(mso_sptTextCirclePourSegm), sizeof( mso_sptTextCirclePourSegm ) >> 1, - const_cast(mso_sptTextCirclePourCalc), SAL_N_ELEMENTS( mso_sptTextCirclePourCalc ), + std::span(mso_sptTextCirclePourCalc), const_cast(mso_sptTextCirclePourDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7064,7 +7063,7 @@ const mso_CustomShape msoTextButtonPour = { std::span(mso_sptTextButtonPourVert), const_cast(mso_sptTextButtonPourSegm), sizeof( mso_sptTextButtonPourSegm ) >> 1, - const_cast(mso_sptTextButtonPourCalc), SAL_N_ELEMENTS( mso_sptTextButtonPourCalc ), + std::span(mso_sptTextButtonPourCalc), const_cast(mso_sptTextButtonPourDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7104,7 +7103,7 @@ const mso_CustomShape msoTextCurveUp = { std::span(mso_sptTextCurveUpVert), const_cast(mso_sptTextCurveUpSegm), sizeof( mso_sptTextCurveUpSegm ) >> 1, - const_cast(mso_sptTextCurveUpCalc), SAL_N_ELEMENTS( mso_sptTextCurveUpCalc ), + std::span(mso_sptTextCurveUpCalc), const_cast(mso_sptTextCurveUpDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7130,7 +7129,7 @@ const mso_CustomShape msoTextCurveDown = { std::span(mso_sptTextCurveDownVert), const_cast(mso_sptTextCurveUpSegm), sizeof( mso_sptTextCurveUpSegm ) >> 1, - const_cast(mso_sptTextCurveUpCalc), SAL_N_ELEMENTS( mso_sptTextCurveUpCalc ), + std::span(mso_sptTextCurveUpCalc), const_cast(mso_sptTextCurveUpDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7170,7 +7169,7 @@ const mso_CustomShape msoTextCanUp = { std::span(mso_sptTextCanUpVert), const_cast(mso_sptTextCanUpSegm), sizeof( mso_sptTextCanUpSegm ) >> 1, - const_cast(mso_sptTextCanUpCalc), SAL_N_ELEMENTS( mso_sptTextCanUpCalc ), + std::span(mso_sptTextCanUpCalc), const_cast(mso_sptTextCanUpDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7203,7 +7202,7 @@ const mso_CustomShape msoTextCanDown = { std::span(mso_sptTextCanDownVert), const_cast(mso_sptTextCanUpSegm), sizeof( mso_sptTextCanUpSegm ) >> 1, - const_cast(mso_sptTextCanDownCalc), SAL_N_ELEMENTS( mso_sptTextCanDownCalc ), + std::span(mso_sptTextCanDownCalc), const_cast(mso_sptTextCanDownDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7237,7 +7236,7 @@ const mso_CustomShape msoTextInflate = { std::span(mso_sptTextInflateVert), const_cast(mso_sptTextCanUpSegm), sizeof( mso_sptTextCanUpSegm ) >> 1, - const_cast(mso_sptTextInflateCalc), SAL_N_ELEMENTS( mso_sptTextInflateCalc ), + std::span(mso_sptTextInflateCalc), const_cast(mso_sptTextInflateDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7267,7 +7266,7 @@ const mso_CustomShape msoTextDeflate = { std::span(mso_sptTextDeflateVert), const_cast(mso_sptTextCanUpSegm), sizeof( mso_sptTextCanUpSegm ) >> 1, - const_cast(mso_sptTextDeflateCalc), SAL_N_ELEMENTS( mso_sptTextDeflateCalc ), + std::span(mso_sptTextDeflateCalc), const_cast(mso_sptDefault8100), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7306,7 +7305,7 @@ const mso_CustomShape msoTextInflateBottom = { std::span(mso_sptTextInflateBottomVert), const_cast(mso_sptTextInflateBottomSegm), sizeof( mso_sptTextInflateBottomSegm ) >> 1, - const_cast(mso_sptTextInflateBottomCalc), SAL_N_ELEMENTS( mso_sptTextInflateBottomCalc ), + std::span(mso_sptTextInflateBottomCalc), const_cast(mso_sptTextInflateBottomDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7345,7 +7344,7 @@ const mso_CustomShape msoTextDeflateBottom = { std::span(mso_sptTextDeflateBottomVert), const_cast(mso_sptTextDeflateBottomSegm), sizeof( mso_sptTextDeflateBottomSegm ) >> 1, - const_cast(mso_sptTextDeflateBottomCalc), SAL_N_ELEMENTS( mso_sptTextDeflateBottomCalc ), + std::span(mso_sptTextDeflateBottomCalc), const_cast(mso_sptTextDeflateBottomDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7382,7 +7381,7 @@ const mso_CustomShape msoTextInflateTop = { std::span(mso_sptTextInflateTopVert), const_cast(mso_sptTextInflateTopSegm), sizeof( mso_sptTextInflateTopSegm ) >> 1, - const_cast(mso_sptTextInflateTopCalc), SAL_N_ELEMENTS( mso_sptTextInflateTopCalc ), + std::span(mso_sptTextInflateTopCalc), const_cast(mso_sptTextInflateTopDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7419,7 +7418,7 @@ const mso_CustomShape msoTextDeflateTop = { std::span(mso_sptTextDeflateTopVert), const_cast(mso_sptTextDeflateTopSegm), sizeof( mso_sptTextDeflateTopSegm ) >> 1, - const_cast(mso_sptTextDeflateTopCalc), SAL_N_ELEMENTS( mso_sptTextDeflateTopCalc ), + std::span(mso_sptTextDeflateTopCalc), const_cast(mso_sptTextDeflateTopDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7465,7 +7464,7 @@ const mso_CustomShape msoTextDeflateInflate = { std::span(mso_sptTextDeflateInflateVert), const_cast(mso_sptTextDeflateInflateSegm), sizeof( mso_sptTextDeflateInflateSegm ) >> 1, - const_cast(mso_sptTextDeflateInflateCalc), SAL_N_ELEMENTS( mso_sptTextDeflateInflateCalc ), + std::span(mso_sptTextDeflateInflateCalc), const_cast(mso_sptTextDeflateInflateDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7519,7 +7518,7 @@ const mso_CustomShape msoTextDeflateInflateDeflate = { std::span(mso_sptTextDeflateInflateDeflateVert), const_cast(mso_sptTextDeflateInflateDeflateSegm), sizeof( mso_sptTextDeflateInflateDeflateSegm ) >> 1, - const_cast(mso_sptTextDeflateInflateDeflateCalc), SAL_N_ELEMENTS( mso_sptTextDeflateInflateDeflateCalc ), + std::span(mso_sptTextDeflateInflateDeflateCalc), const_cast(mso_sptTextDeflateInflateDeflateDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7542,7 +7541,7 @@ const mso_CustomShape msoTextWave1 = { std::span(mso_sptTextWave1Vert), const_cast(mso_sptTextWave1Segm), sizeof( mso_sptTextWave1Segm ) >> 1, - const_cast(mso_sptWaveCalc), SAL_N_ELEMENTS( mso_sptWaveCalc ), + std::span(mso_sptWaveCalc), const_cast(mso_sptWaveDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7560,7 +7559,7 @@ const mso_CustomShape msoTextWave2 = { std::span(mso_sptTextWave2Vert), const_cast(mso_sptTextWave1Segm), sizeof( mso_sptTextWave1Segm ) >> 1, - const_cast(mso_sptWaveCalc), SAL_N_ELEMENTS( mso_sptWaveCalc ), + std::span(mso_sptWaveCalc), const_cast(mso_sptWaveDefault), const_cast(mso_sptFontWorkTextRect), SAL_N_ELEMENTS( mso_sptFontWorkTextRect ), 21600, 21600, @@ -7583,7 +7582,7 @@ const mso_CustomShape msoTextWave3 = { std::span(mso_sptTextWave3Vert), const_cast(mso_sptTextWave3Segm), sizeof( mso_sptTextWave3Segm ) >> 1, - const_cast(mso_sptDoubleWaveCalc), SAL_N_ELEMENTS( mso_sptDoubleWaveCalc ), + std::span(mso_sptDoubleWaveCalc), const_cast(mso_sptDoubleWaveDefault), const_cast(mso_sptDoubleWaveTextRect), SAL_N_ELEMENTS( mso_sptDoubleWaveTextRect ), 21600, 21600, @@ -7601,7 +7600,7 @@ const mso_CustomShape msoTextWave4 = { std::span(mso_sptTextWave4Vert), const_cast(mso_sptTextWave3Segm), sizeof( mso_sptTextWave3Segm ) >> 1, - const_cast(mso_sptDoubleWaveCalc), SAL_N_ELEMENTS( mso_sptDoubleWaveCalc ), + std::span(mso_sptDoubleWaveCalc), const_cast(mso_sptDoubleWaveDefault), const_cast(mso_sptDoubleWaveTextRect), SAL_N_ELEMENTS( mso_sptDoubleWaveTextRect ), 21600, 21600, @@ -7768,7 +7767,7 @@ const mso_CustomShape msoCallout90 = { std::span(mso_sptCalloutVert1), const_cast(mso_sptCalloutSegm1b), sizeof( mso_sptCalloutSegm1b ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault1), nullptr, 0, 21600, 21600, @@ -7780,7 +7779,7 @@ const mso_CustomShape msoCallout1 = { std::span(mso_sptCalloutVert1), const_cast(mso_sptCalloutSegm1b), sizeof( mso_sptCalloutSegm1b ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault2), nullptr, 0, 21600, 21600, @@ -7792,7 +7791,7 @@ const mso_CustomShape msoCallout2 = { std::span(mso_sptCallout2Verta), const_cast(mso_sptCallout2Segm1b), sizeof( mso_sptCallout2Segm1b ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault3), nullptr, 0, 21600, 21600, @@ -7804,7 +7803,7 @@ const mso_CustomShape msoCallout3 = { std::span(mso_sptCallout3Verta), const_cast(mso_sptCallout3Segm1b), sizeof( mso_sptCallout3Segm1b ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault4), nullptr, 0, 21600, 21600, @@ -7816,7 +7815,7 @@ const mso_CustomShape msoAccentCallout90 = { std::span(mso_sptCalloutVert1), const_cast(mso_sptCalloutSegm1b), sizeof( mso_sptCalloutSegm1b ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault1), nullptr, 0, 21600, 21600, @@ -7828,7 +7827,7 @@ const mso_CustomShape msoAccentCallout1 = { std::span(mso_sptCallout1Vert), const_cast(mso_sptCallout1Segm1b), sizeof( mso_sptCallout1Segm1b ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault2), nullptr, 0, 21600, 21600, @@ -7840,7 +7839,7 @@ const mso_CustomShape msoAccentCallout2 = { std::span(mso_sptCallout2Vertb), const_cast(mso_sptCallout2Segm1d), sizeof( mso_sptCallout2Segm1d ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault3), nullptr, 0, 21600, 21600, @@ -7852,7 +7851,7 @@ const mso_CustomShape msoAccentCallout3 = { std::span(mso_sptCallout3Vertb), const_cast(mso_sptCallout3Segm1d), sizeof( mso_sptCallout3Segm1d ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault4), nullptr, 0, 21600, 21600, @@ -7864,7 +7863,7 @@ const mso_CustomShape msoBorderCallout90 = { std::span(mso_sptCalloutVert1), const_cast(mso_sptCalloutSegm1a), sizeof( mso_sptCalloutSegm1a ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault1), nullptr, 0, 21600, 21600, @@ -7876,7 +7875,7 @@ const mso_CustomShape msoBorderCallout1 = { std::span(mso_sptCalloutVert1), const_cast(mso_sptCalloutSegm1a), sizeof( mso_sptCalloutSegm1a ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault2), nullptr, 0, 21600, 21600, @@ -7888,7 +7887,7 @@ const mso_CustomShape msoBorderCallout2 = { std::span(mso_sptCallout2Verta), const_cast(mso_sptCallout2Segm1a), sizeof( mso_sptCallout2Segm1a ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault3), nullptr, 0, 21600, 21600, @@ -7900,7 +7899,7 @@ const mso_CustomShape msoBorderCallout3 = { std::span(mso_sptCallout3Verta), const_cast(mso_sptCallout3Segm1a), sizeof( mso_sptCallout3Segm1a ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault4), nullptr, 0, 21600, 21600, @@ -7912,7 +7911,7 @@ const mso_CustomShape msoAccentBorderCallout90 = { std::span(mso_sptCalloutVert1), const_cast(mso_sptCalloutSegm1a), sizeof( mso_sptCalloutSegm1a ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault1), nullptr, 0, 21600, 21600, @@ -7924,7 +7923,7 @@ const mso_CustomShape msoAccentBorderCallout1 = { std::span(mso_sptCallout1Vert), const_cast(mso_sptCallout1Segm1a), sizeof( mso_sptCallout1Segm1a ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault2), nullptr, 0, 21600, 21600, @@ -7936,7 +7935,7 @@ const mso_CustomShape msoAccentBorderCallout2 = { std::span(mso_sptCallout2Vertb), const_cast(mso_sptCallout2Segm1c), sizeof( mso_sptCallout2Segm1c ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault3), nullptr, 0, 21600, 21600, @@ -7948,7 +7947,7 @@ const mso_CustomShape msoAccentBorderCallout3 = { std::span(mso_sptCallout3Vertb), const_cast(mso_sptCallout3Segm1c), sizeof( mso_sptCallout3Segm1c ) >> 1, - const_cast(mso_sptCalloutCalc), SAL_N_ELEMENTS( mso_sptCalloutCalc ), + std::span(mso_sptCalloutCalc), const_cast(mso_sptCalloutDefault4), nullptr, 0, 21600, 21600, @@ -7969,7 +7968,7 @@ const mso_CustomShape msoStraightConnector1 = { std::span(mso_sptStraightConnector1Vert), const_cast(mso_sptStraightConnector1Segm), sizeof( mso_sptStraightConnector1Segm ) >> 1, - nullptr, 0, + std::span(), nullptr, nullptr, 0, 21600, 21600, @@ -7990,7 +7989,7 @@ const mso_CustomShape msoBentConnector2 = { std::span(mso_sptBentConnector2Vert), const_cast(mso_sptBentConnector2Segm), sizeof( mso_sptBentConnector2Segm ) >> 1, - nullptr, 0, + std::span(), nullptr, nullptr, 0, 21600, 21600, @@ -8024,7 +8023,7 @@ const mso_CustomShape msoBentConnector3 = { std::span(mso_sptBentConnector3Vert), const_cast(mso_sptBentConnector3Segm), sizeof( mso_sptBentConnector3Segm ) >> 1, - const_cast(mso_sptBentConnector3Calc), SAL_N_ELEMENTS( mso_sptBentConnector3Calc ), + std::span(mso_sptBentConnector3Calc), const_cast(mso_sptBentConnector3Default), nullptr, 0, 21600, 21600, @@ -8064,7 +8063,7 @@ const mso_CustomShape msoBentConnector4 = { std::span(mso_sptBentConnector4Vert), const_cast(mso_sptBentConnector4Segm), sizeof( mso_sptBentConnector4Segm ) >> 1, - const_cast(mso_sptBentConnector4Calc), SAL_N_ELEMENTS( mso_sptBentConnector4Calc ), + std::span(mso_sptBentConnector4Calc), const_cast(mso_sptBentConnector4Default), nullptr, 0, 21600, 21600, @@ -8109,7 +8108,7 @@ const mso_CustomShape msoBentConnector5 = { std::span(mso_sptBentConnector5Vert), const_cast(mso_sptBentConnector5Segm), sizeof( mso_sptBentConnector5Segm ) >> 1, - const_cast(mso_sptBentConnector5Calc), SAL_N_ELEMENTS( mso_sptBentConnector5Calc ), + std::span(mso_sptBentConnector5Calc), const_cast(mso_sptBentConnector5Default), nullptr, 0, 21600, 21600, @@ -8130,7 +8129,7 @@ const mso_CustomShape msoCurvedConnector2 = { std::span(mso_sptCurvedConnector2Vert), const_cast(mso_sptCurvedConnector2Segm), sizeof( mso_sptCurvedConnector2Segm ) >> 1, - nullptr, 0, + std::span(), nullptr, nullptr, 0, 21600, 21600, @@ -8167,7 +8166,7 @@ const mso_CustomShape msoCurvedConnector3 = { std::span(mso_sptCurvedConnector3Vert), const_cast(mso_sptCurvedConnector3Segm), sizeof( mso_sptCurvedConnector3Segm ) >> 1, - const_cast(mso_sptCurvedConnector3Calc), SAL_N_ELEMENTS( mso_sptCurvedConnector3Calc ), + std::span(mso_sptCurvedConnector3Calc), const_cast(mso_sptCurvedConnector3Default), nullptr, 0, 21600, 21600, @@ -8220,7 +8219,7 @@ const mso_CustomShape msoCurvedConnector4 = { std::span(mso_sptCurvedConnector4Vert), const_cast(mso_sptCurvedConnector4Segm), sizeof( mso_sptCurvedConnector4Segm ) >> 1, - const_cast(mso_sptCurvedConnector4Calc), SAL_N_ELEMENTS( mso_sptCurvedConnector4Calc ), + std::span(mso_sptCurvedConnector4Calc), const_cast(mso_sptCurvedConnector4Default), nullptr, 0, 21600, 21600, @@ -8283,7 +8282,7 @@ const mso_CustomShape msoCurvedConnector5 = { std::span(mso_sptCurvedConnector5Vert), const_cast(mso_sptCurvedConnector5Segm), sizeof( mso_sptCurvedConnector5Segm ) >> 1, - const_cast(mso_sptCurvedConnector5Calc), SAL_N_ELEMENTS( mso_sptCurvedConnector5Calc ), + std::span(mso_sptCurvedConnector5Calc), const_cast(mso_sptCurvedConnector5Default), nullptr, 0, 21600, 21600, @@ -8344,7 +8343,7 @@ const mso_CustomShape msoTearDrop = { std::span(mso_sptTearDropVert), const_cast(mso_sptTearDropSegm), sizeof( mso_sptTearDropSegm ) >> 1, - const_cast(mso_sptTearDropCalc), SAL_N_ELEMENTS(mso_sptTearDropCalc), + std::span(mso_sptTearDropCalc), const_cast(mso_sptTearDropDefault), const_cast(mso_sptTearDropTextRect), SAL_N_ELEMENTS( mso_sptTearDropTextRect ), 21600, 21600, diff --git a/svx/source/svdraw/svdoashp.cxx b/svx/source/svdraw/svdoashp.cxx index 609d245e7857..9cb5cffb3f5d 100644 --- a/svx/source/svdraw/svdoashp.cxx +++ b/svx/source/svdraw/svdoashp.cxx @@ -1036,14 +1036,16 @@ void SdrObjCustomShape::MergeDefaultAttributes( const OUString* pType ) // Equations static constexpr OUString sEquations( u"Equations"_ustr ); pAny = aGeometryItem.GetPropertyValueByName( sEquations ); - if ( !pAny && pDefCustomShape && pDefCustomShape->nCalculation && pDefCustomShape->pCalculation ) + if (!pAny && pDefCustomShape && !pDefCustomShape->pCalculation.empty() ) { - sal_Int32 i, nCount = pDefCustomShape->nCalculation; + sal_Int32 i, nCount = pDefCustomShape->pCalculation.size(); uno::Sequence< OUString > seqEquations( nCount ); auto pseqEquations = seqEquations.getArray(); - const SvxMSDffCalculationData* pData = pDefCustomShape->pCalculation; - for ( i = 0; i < nCount; i++, pData++ ) + for (i = 0; i < nCount; i++) + { + const SvxMSDffCalculationData* pData = &pDefCustomShape->pCalculation[i]; pseqEquations[ i ] = EnhancedCustomShape2d::GetEquation( pData->nFlags, pData->nVal[ 0 ], pData->nVal[ 1 ], pData->nVal[ 2 ] ); + } aPropVal.Name = sEquations; aPropVal.Value <<= seqEquations; aGeometryItem.SetPropertyValue( aPropVal ); @@ -1274,24 +1276,26 @@ bool SdrObjCustomShape::IsDefaultGeometry( const DefaultType eDefaultType ) cons case DefaultType::Equations : { pAny = rGeometryItem.GetPropertyValueByName( "Equations" ); - if ( pAny && pDefCustomShape && pDefCustomShape->nCalculation && pDefCustomShape->pCalculation ) + if (pAny && pDefCustomShape && !pDefCustomShape->pCalculation.empty()) { uno::Sequence seqEquations1; if ( *pAny >>= seqEquations1 ) { - sal_Int32 i, nCount = pDefCustomShape->nCalculation; + sal_Int32 i, nCount = pDefCustomShape->pCalculation.size(); uno::Sequence seqEquations2( nCount ); auto pseqEquations2 = seqEquations2.getArray(); - const SvxMSDffCalculationData* pData = pDefCustomShape->pCalculation; - for ( i = 0; i < nCount; i++, pData++ ) + for (i = 0; i < nCount; i++) + { + const SvxMSDffCalculationData* pData = &pDefCustomShape->pCalculation[i]; pseqEquations2[ i ] = EnhancedCustomShape2d::GetEquation( pData->nFlags, pData->nVal[ 0 ], pData->nVal[ 1 ], pData->nVal[ 2 ] ); + } if ( seqEquations1 == seqEquations2 ) bIsDefaultGeometry = true; } } - else if ( pDefCustomShape && ( ( pDefCustomShape->nCalculation == 0 ) || ( pDefCustomShape->pCalculation == nullptr ) ) ) + else if (pDefCustomShape && pDefCustomShape->pCalculation.empty()) bIsDefaultGeometry = true; } break;