diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2021-12-26 09:11:53 +0100 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2022-01-02 09:03:32 +0100 |
commit | 9f4aad493c7087256d03b01ca3fb18d96f461526 (patch) | |
tree | 6db1c950085bd2809cfb2e1ecf9ddcd3537da961 /sw/source | |
parent | 41ee9dcc4e12c32d49294dd4b19a97cb24f8253f (diff) |
Introduce OUString::unacquired(const OUStringBuffer&)
... and avoid OUStringBuffer::toString when the temporary is used
for checking current buffer content
Change-Id: I114178f3e74ca3e4a3e517763f9eaab4797b7deb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127478
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/ww8par2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx index 69bed2580eca..a50e0b1d280c 100644 --- a/sw/source/filter/ww8/ww8par2.cxx +++ b/sw/source/filter/ww8/ww8par2.cxx @@ -708,7 +708,7 @@ void SwWW8ImplReader::SetAnlvStrings(SwNumFormat &rNum, int nLevel, WW8_ANLV con if (rAV.cbTextBefore || rAV.cbTextAfter) { rNum.SetBulletChar( - sText.toString().iterateCodePoints(&o3tl::temporary(sal_Int32(0)))); + OUString::unacquired(sText).iterateCodePoints(&o3tl::temporary(sal_Int32(0)))); } else rNum.SetBulletChar( 0x2190 ); |