Avoid needless temporary Sequence creation

Change-Id: Ia0b6df8b329136292917c94ee5d5e69a0931a200
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178056
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Tested-by: Jenkins
This commit is contained in:
Mike Kaganski 2024-12-07 02:54:25 +05:00
parent 8fdef54870
commit cd9976d2b1

View file

@ -943,7 +943,7 @@ namespace accessibility
}
}
return ::comphelper::concatSequences( aRunAttrSeq, comphelper::containerToSequence(aDiffVec) );
return comphelper::concatSequences(aRunAttrSeq, aDiffVec);
}
tools::Rectangle AccessibleStaticTextBase::GetParagraphBoundingBox() const