summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-12-26 09:11:53 +0100
committerMike Kaganski <mike.kaganski@collabora.com>2022-01-02 09:03:32 +0100
commit9f4aad493c7087256d03b01ca3fb18d96f461526 (patch)
tree6db1c950085bd2809cfb2e1ecf9ddcd3537da961 /sc
parent41ee9dcc4e12c32d49294dd4b19a97cb24f8253f (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')
-rw-r--r--sc/source/core/tool/compiler.cxx2
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;
}