Kaydet (Commit) cd252e3a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconstant: adapt to improved OUStringLiteral1 (opencl)

Change-Id: I0da7434b67148824d1c2343f8ecb2b069df6baa2
üst bbecf931
......@@ -79,7 +79,7 @@ OUString getToken(const OUString& string, sal_Int32& index)
result += token.copy(i, p - i);
if (p < token.getLength() - 2)
{
result += OUString(static_cast<sal_Unicode>(token.copy(p+1, 2).toInt32(16)));
result += OUStringLiteral1(token.copy(p+1, 2).toInt32(16));
i = p + 3;
}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment