sw/source/core/unocore/unodraw.cxx | 2 +- sw/source/core/unocore/unoframe.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit d12f7b60b2c96db507c2a8ed5c75666d970ce5ab Author: Samuel Mehrbrodt <[email protected]> AuthorDate: Mon Feb 23 16:06:33 2026 +0100 Commit: Samuel Mehrbrodt <[email protected]> CommitDate: Mon Mar 2 07:57:26 2026 +0100 Downgrade RelOrientation warnings to infos Change-Id: Ifdd56b52bcbe288797a74bc448683a65d05152ec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200067 Reviewed-by: Michael Stahl <[email protected]> Reviewed-by: Samuel Mehrbrodt <[email protected]> Tested-by: Jenkins diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx index 1160153162b8..a75fa9531c92 100644 --- a/sw/source/core/unocore/unodraw.cxx +++ b/sw/source/core/unocore/unodraw.cxx @@ -1284,7 +1284,7 @@ void SwXShape::setPropertyValue(const OUString& rPropertyName, const uno::Any& a aValue >>= nRelOrient; if (sw::GetAtPageRelOrientation(nRelOrient, true)) { - SAL_WARN("sw.core", "SwXShape: fixing invalid horizontal RelOrientation for at-page anchor"); + SAL_INFO("sw.core", "SwXShape: fixing invalid horizontal RelOrientation for at-page anchor"); value <<= nRelOrient; } SfxItemPropertySet::setPropertyValue( *pEntry, value, aSet ); diff --git a/sw/source/core/unocore/unoframe.cxx b/sw/source/core/unocore/unoframe.cxx index 969788c871a0..3a8a4a2d6c5d 100644 --- a/sw/source/core/unocore/unoframe.cxx +++ b/sw/source/core/unocore/unoframe.cxx @@ -2749,7 +2749,7 @@ void SwXFrame::attachToRange(uno::Reference<text::XTextRange> const& xTextRange, sal_Int16 nRelOrient(aFrameSet.Get(RES_HORI_ORIENT).GetRelationOrient()); if (sw::GetAtPageRelOrientation(nRelOrient, true)) { - SAL_WARN("sw.core", "SwXFrame: fixing invalid horizontal RelOrientation for at-page anchor"); + SAL_INFO("sw.core", "SwXFrame: fixing invalid horizontal RelOrientation for at-page anchor"); SwFormatHoriOrient item(aFrameSet.Get(RES_HORI_ORIENT)); item.SetRelationOrient(nRelOrient);
