summaryrefslogtreecommitdiff
path: root/comphelper/source/container/enumerablemap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/container/enumerablemap.cxx')
-rw-r--r--comphelper/source/container/enumerablemap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/container/enumerablemap.cxx b/comphelper/source/container/enumerablemap.cxx
index 16725878d047..5b5f3a197a44 100644
--- a/comphelper/source/container/enumerablemap.cxx
+++ b/comphelper/source/container/enumerablemap.cxx
@@ -470,11 +470,11 @@ namespace comphelper
if ( !bValid )
{
OUStringBuffer aMessage;
- aMessage.appendAscii( "Incompatible value type. Found '" );
+ aMessage.append( "Incompatible value type. Found '" );
aMessage.append( _value.getValueTypeName() );
- aMessage.appendAscii( "', where '" );
+ aMessage.append( "', where '" );
aMessage.append( m_aData.m_aValueType.getTypeName() );
- aMessage.appendAscii( "' (or compatible type) is expected." );
+ aMessage.append( "' (or compatible type) is expected." );
throw IllegalTypeException( aMessage.makeStringAndClear(), *const_cast< EnumerableMap* >( this ) );
}