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 /svtools | |
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 'svtools')
-rw-r--r-- | svtools/source/svrtf/parrtf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx index ef6cdbb73620..d16ac8cf0a1e 100644 --- a/svtools/source/svrtf/parrtf.cxx +++ b/svtools/source/svrtf/parrtf.cxx @@ -125,7 +125,7 @@ int SvRTFParser::GetNextToken_() aNumber.append(static_cast<sal_Unicode>(nNextCh)); nNextCh = GetNextChar(); } while( RTF_ISDIGIT( nNextCh ) ); - nTokenValue = aNumber.toString().toInt32(); + nTokenValue = OUString::unacquired(aNumber).toInt32(); if( bNegValue ) nTokenValue = -nTokenValue; bTokenHasValue=true; |