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

loplugin:stringconstant: adapt to improved OUStringLiteral1 (tools)

Change-Id: I624505ceee232a531826915755717f2e09dc0a72
üst 32f9120f
......@@ -666,15 +666,15 @@ bool parseParameters(ParameterList const & rInput,
if (pNext->m_bExtended)
{
for (sal_Int32 i = 0; i < pNext->m_aValue.getLength(); ++i)
aValue += OUString(sal_Unicode(
aValue += OUStringLiteral1(
sal_Unicode(
static_cast<unsigned char>(pNext->m_aValue[i]))
| 0xF800));
| 0xF800);
}
else
{
for (sal_Int32 i = 0; i < pNext->m_aValue.getLength(); ++i)
aValue += OUString( sal_Unicode(static_cast<unsigned char>(pNext->m_aValue[i])) );
aValue += OUStringLiteral1( static_cast<unsigned char>(pNext->m_aValue[i]) );
}
pNext = pNext->m_pNext;
if (!pNext || pNext->m_nSection == 0)
......
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