summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_util.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:02:45 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:02:45 +0200
commitf5eeaaac7c4e73b60e69355303a4e9a2f9180d55 (patch)
treef84c28f93e071fa28ff1fc1751c56a1492ea012f /pyuno/source/module/pyuno_util.cxx
parentf14a9da3229f13b49684ddfcb15bea48739c8efe (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I98058ff0653a3aab3399735271d04b16a05a3684
Diffstat (limited to 'pyuno/source/module/pyuno_util.cxx')
-rw-r--r--pyuno/source/module/pyuno_util.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_util.cxx b/pyuno/source/module/pyuno_util.cxx
index 356524fabf4f..e6abadcf8ec8 100644
--- a/pyuno/source/module/pyuno_util.cxx
+++ b/pyuno/source/module/pyuno_util.cxx
@@ -106,7 +106,7 @@ PyRef getObjectFromUnoModule( const Runtime &runtime, const char * func )
if( !object.is() )
{
OUStringBuffer buf;
- buf.appendAscii( "couldn't find core function " );
+ buf.append( "couldn't find core function " );
buf.appendAscii( func );
throw RuntimeException(buf.makeStringAndClear());
}