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:
parent
8fdef54870
commit
cd9976d2b1
1 changed files with 1 additions and 1 deletions
|
@ -943,7 +943,7 @@ namespace accessibility
|
|||
}
|
||||
}
|
||||
|
||||
return ::comphelper::concatSequences( aRunAttrSeq, comphelper::containerToSequence(aDiffVec) );
|
||||
return comphelper::concatSequences(aRunAttrSeq, aDiffVec);
|
||||
}
|
||||
|
||||
tools::Rectangle AccessibleStaticTextBase::GetParagraphBoundingBox() const
|
||||
|
|
Loading…
Reference in a new issue