summaryrefslogtreecommitdiff
path: root/opencl/source/openclconfig.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'opencl/source/openclconfig.cxx')
-rw-r--r--opencl/source/openclconfig.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx
index 6fcd59618789..ed122749bc3a 100644
--- a/opencl/source/openclconfig.cxx
+++ b/opencl/source/openclconfig.cxx
@@ -83,7 +83,7 @@ OUString getToken(const OUString& string, sal_Int32& index)
result.append(std::u16string_view(token).substr(i, p - i));
if (p < token.getLength() - 2)
{
- result.append(OUStringLiteral1(token.copy(p+1, 2).toInt32(16)));
+ result.append(OUStringChar(token.copy(p+1, 2).toInt32(16)));
i = p + 3;
}
else