summaryrefslogtreecommitdiff
path: root/comphelper/source/container/enumerablemap.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:04:28 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:04:28 +0200
commit1d6cd0146e5e504665b0075311471109cdde52ea (patch)
tree2bfc4d9ec7bde6008a4dec9c4188d46ad7511fb6 /comphelper/source/container/enumerablemap.cxx
parent5f5ccfc0a69de4c10b6adeeaaf284bcb07ab7f39 (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I957be579527123be25abca0b7dcb69295711abf8
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 ) );
}