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

loplugin:stringconstant: adapt to improved OUStringLiteral1 (basic)

Change-Id: I7e9ceb5513b34115bb1f41e627af06bbffc6ecf1
üst 30b84816
......@@ -156,7 +156,7 @@ static SbxVariableRef Operand
break;
}
}
aString += OUString(*p++);
aString += OUStringLiteral1(*p++);
}
refVar->PutString( aString );
}
......
......@@ -255,7 +255,7 @@ const OUString& SbxVariable::GetName( SbxNameType t ) const
}
if( cType != ' ' )
{
aTmp += OUString(sal_Unicode(cType));
aTmp += OUStringLiteral1(cType);
}
}
aTmp += "(";
......@@ -288,7 +288,7 @@ const OUString& SbxVariable::GetName( SbxNameType t ) const
}
if( cType != ' ' )
{
aTmp += OUString((sal_Unicode)cType);
aTmp += OUStringLiteral1(cType);
if( i->eType & SbxARRAY )
{
aTmp += "()";
......
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