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

loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: I50731912bb29ce7749d4765ca4866e08ce20994e
üst 36fe72f9
......@@ -51,7 +51,7 @@ executeErrorDialog(
OUStringBuffer aText(rContext);
if (!rContext.isEmpty() && !rMessage.isEmpty())
aText.appendAscii(":\n");
aText.append(":\n");
//TODO! must be internationalized
aText.append(rMessage);
......
......@@ -895,7 +895,7 @@ UUIInteractionHelper::getInteractionHandlerList(
configuration::theDefaultProvider::get( m_xContext );
OUStringBuffer aFullPath;
aFullPath.appendAscii(
aFullPath.append(
"/org.openoffice.ucb.InteractionHandler/InteractionHandlers" );
uno::Sequence< uno::Any > aArguments( 1 );
......@@ -934,7 +934,7 @@ UUIInteractionHelper::getInteractionHandlerList(
for ( sal_Int32 n = 0; n < nCount; ++n )
{
OUStringBuffer aElemBuffer;
aElemBuffer.appendAscii( "['" );
aElemBuffer.append( "['" );
aElemBuffer.append( pElems[ n ] );
try
......@@ -943,7 +943,7 @@ UUIInteractionHelper::getInteractionHandlerList(
// Obtain service name.
OUStringBuffer aKeyBuffer = aElemBuffer;
aKeyBuffer.appendAscii( "']/ServiceName" );
aKeyBuffer.append( "']/ServiceName" );
OUString aValue;
if ( !( xHierNameAccess->getByHierarchicalName(
......
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