Upgrade mdds to 3.1.0

Change-Id: I449cc9a9654ddac143b33641ae955c393d404aa8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187605
Reviewed-by: Kohei Yoshida <kohei@libreoffice.org>
Tested-by: Jenkins
This commit is contained in:
Kohei Yoshida
2025-07-09 22:51:43 -04:00
parent 2f2f56f47f
commit e9632c5d3a
3 changed files with 5 additions and 5 deletions

View File

@ -487,8 +487,8 @@ MARIADB_CONNECTOR_C_TARBALL := mariadb-connector-c-3.3.15-src.tar.gz
# three static lines
# so that git cherry-pick
# will not run into conflicts
MDDS_SHA256SUM := 9b077e8d929050e9a432cc131beed2380ac85cfe98b17fc26d01d0ed532129c8
MDDS_TARBALL := mdds-3.0.0.tar.xz
MDDS_SHA256SUM := ca295f4c86968a7eb1f5d503ff7ae180e6605210cfb26d01658be42048c0924c
MDDS_TARBALL := mdds-3.1.0.tar.xz
# three static lines
# so that git cherry-pick
# will not run into conflicts

View File

@ -220,7 +220,7 @@ void XclImpColRowSettings::Convert( SCTAB nScTab )
SCROW nPrevRow = -1;
ExcColRowFlags nPrevFlags = ExcColRowFlags::NONE;
for (const auto& [nRow, nFlags] : maRowFlags)
for (const auto [nRow, nFlags] : maRowFlags)
{
if (nPrevRow >= 0)
{
@ -306,7 +306,7 @@ void XclImpColRowSettings::ConvertHiddenFlags( SCTAB nScTab )
SCROW nPrevRow = -1;
bool bPrevHidden = false;
for (const auto& [nRow, bHidden] : maHiddenRows)
for (const auto [nRow, bHidden] : maHiddenRows)
{
if (nPrevRow >= 0)
{

View File

@ -88,7 +88,7 @@ void XclImpOutlineBuffer::MakeScOutline()
::std::vector<SCSIZE> aOutlineStack;
aOutlineStack.reserve(mnMaxLevel);
for (const auto& [nPos, nLevel] : maLevels)
for (const auto [nPos, nLevel] : maLevels)
{
if (nPos >= mnEndPos)
{