editeng a11y: Use usual 4 spaces to indent one level

... instead of 6

Change-Id: I27585734069f76d7d535c01760d0bd2085f51051
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183707
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
This commit is contained in:
Michael Weghorn
2025-04-04 12:39:57 +02:00
parent e435dc6ca1
commit a28db0efd2

View File

@@ -625,14 +625,14 @@ css::accessibility::TextSegment SAL_CALL AccessibleStaticTextBase::getTextAtInde
} }
else if ( AccessibleTextType::ATTRIBUTE_RUN == aTextType ) else if ( AccessibleTextType::ATTRIBUTE_RUN == aTextType )
{ {
SvxAccessibleTextAdapter& rTextForwarder = GetParagraph( aPos.nIndex ).GetTextForwarder(); SvxAccessibleTextAdapter& rTextForwarder = GetParagraph( aPos.nIndex ).GetTextForwarder();
sal_Int32 nStartIndex, nEndIndex; sal_Int32 nStartIndex, nEndIndex;
if ( rTextForwarder.GetAttributeRun( nStartIndex, nEndIndex, aPos.nPara, aPos.nIndex, true ) ) if ( rTextForwarder.GetAttributeRun( nStartIndex, nEndIndex, aPos.nPara, aPos.nIndex, true ) )
{ {
aResult.SegmentText = getTextRange( nStartIndex, nEndIndex ); aResult.SegmentText = getTextRange( nStartIndex, nEndIndex );
aResult.SegmentStart = nStartIndex; aResult.SegmentStart = nStartIndex;
aResult.SegmentEnd = nEndIndex; aResult.SegmentEnd = nEndIndex;
} }
} }
else else
{ {