oox/inc/drawingml/chart/seriesmodel.hxx | 1 - sdext/source/pdfimport/filterdet.cxx | 2 +- sw/source/core/access/accmap.cxx | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-)
New commits: commit 36d9217cb4c6288cbd14ce383fb14f3e67711f3f Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Mon Apr 28 08:40:00 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Mon Apr 28 11:35:22 2025 +0200 cid#1646746 COPY_INSTEAD_OF_MOVE Change-Id: I6e0ef99fd8bf4240e9b79bc0fca0257d80419509 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184701 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/sdext/source/pdfimport/filterdet.cxx b/sdext/source/pdfimport/filterdet.cxx index 61189f00f873..8689b190b755 100644 --- a/sdext/source/pdfimport/filterdet.cxx +++ b/sdext/source/pdfimport/filterdet.cxx @@ -422,7 +422,7 @@ uno::Reference<io::XStream> getEmbeddedFile(const OUString& rInPDFFileURL, uno::Sequence<sal_Int8> aExtractedFileSeq(reinterpret_cast<sal_Int8 *>(aExtractedFileBuf.data()), aExtractedFileBuf.size()); xOut->writeBytes(aExtractedFileSeq); - xEmbed = xContextStream; + xEmbed = std::move(xContextStream); rOutMimetype = aMimetype; SAL_INFO("sdext.pdfimport", "getEmbeddedFile returning stream"); } while (bAgain); commit 6b092e7e647616907f3f0122383fd7e5be43c3c2 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Mon Apr 28 08:37:49 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Mon Apr 28 11:35:15 2025 +0200 cid#1646747 Useless call since: commit e06c771f610c5f5bac983df3ebf5e9700f74bf08 CommitDate: Fri Apr 25 07:31:34 2025 +0200 sw a11y: Use SwFrame directly in SwAccessibleMap::InvalidateEditableStates Change-Id: Ibd84c8095b8e30ac77ca1f7d522b41a29e01bb0a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184700 Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> Tested-by: Jenkins diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx index f19ca7e30c02..da652679aac8 100644 --- a/sw/source/core/access/accmap.cxx +++ b/sw/source/core/access/accmap.cxx @@ -2506,7 +2506,7 @@ void SwAccessibleMap::InvalidateEditableStates( const SwFrame* _pFrame ) // Start with the frame or the first upper that is accessible const SwFrame* pAccFrame = _pFrame; while (pAccFrame && !SwAccessibleChild::IsFrameAccessible(*pAccFrame, GetShell().IsPreview())) - pAccFrame->GetUpper(); + pAccFrame = pAccFrame->GetUpper(); if (!pAccFrame) pAccFrame = GetShell().GetLayout(); commit fbbe5df1f7655203fb69f823aa605f3d9d4edd38 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Mon Apr 28 08:35:08 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Mon Apr 28 11:35:08 2025 +0200 cid#1646745 Uninitialized scalar field unused Change-Id: If680564f64058a6e7ceb9aa08710210a6accb3ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184699 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/oox/inc/drawingml/chart/seriesmodel.hxx b/oox/inc/drawingml/chart/seriesmodel.hxx index 81c6e770ee1c..4f48115676f0 100644 --- a/oox/inc/drawingml/chart/seriesmodel.hxx +++ b/oox/inc/drawingml/chart/seriesmodel.hxx @@ -211,7 +211,6 @@ struct SeriesModel bool mbBubble3d; /// True = show bubbles with 3D shade. bool mbInvertNeg; /// True = invert negative data points. bool mbSmooth; /// True = smooth series line. - sal_Int32 mnCxChartType; /// Enumerated chartex type explicit SeriesModel(bool bMSO2007Doc); ~SeriesModel();