summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/logging.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/logging.cxx')
-rw-r--r--comphelper/source/misc/logging.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/source/misc/logging.cxx b/comphelper/source/misc/logging.cxx
index 9f6eb735133e..e6cef1d74454 100644
--- a/comphelper/source/misc/logging.cxx
+++ b/comphelper/source/misc/logging.cxx
@@ -233,7 +233,7 @@ namespace comphelper
try
{
OUStringBuffer aBuffer;
- aBuffer.appendAscii( "string:" );
+ aBuffer.append( "string:" );
aBuffer.append( _nMessageResID );
OSL_VERIFY( _rxBundle->getDirectElement( aBuffer.makeStringAndClear() ) >>= sMessage );
}
@@ -262,11 +262,11 @@ namespace comphelper
if ( sMessage.isEmpty() )
{
OUStringBuffer aBuffer;
- aBuffer.appendAscii( "<invalid event resource: '" );
+ aBuffer.append( "<invalid event resource: '" );
aBuffer.append( m_pData->sBundleBaseName );
- aBuffer.appendAscii( ":" );
+ aBuffer.append( ":" );
aBuffer.append( _nMessageResID );
- aBuffer.appendAscii( "'>" );
+ aBuffer.append( "'>" );
sMessage = aBuffer.makeStringAndClear();
}
return sMessage;