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 /sc/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 'sc/source')
-rw-r--r-- | sc/source/core/tool/compiler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index 42385b3441cf..0858487b2836 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -666,7 +666,7 @@ static bool lcl_parseExternalName( if (aTmpName[nNameLen-1] == '!') { // Check against #REF!. - if (aTmpName.toString().equalsIgnoreAsciiCase("#REF!")) + if (OUString::unacquired(aTmpName).equalsIgnoreAsciiCase("#REF!")) return false; } |