diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-02-08 21:36:07 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-02-09 02:10:16 +0200 |
commit | 7d56128654457bfc859217c23a957d1712fd6e1c (patch) | |
tree | c056c2a7d0ad402701d0fad0f86749334c2b1b14 /stoc | |
parent | 73256b918119e378c762f6a3d79d04f311a075cc (diff) |
Fix exception message: add colon between function name and the word "expected"
Change-Id: I80eadaa097afdbe4394aceca9f40b9753792f30b
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/invocation/invocation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx index f564425c4202..82dfbac5a417 100644 --- a/stoc/source/invocation/invocation.cxx +++ b/stoc/source/invocation/invocation.cxx @@ -590,7 +590,7 @@ Any Invocation_Impl::invoke( const OUString& FunctionName, const Sequence<Any>& { throw IllegalArgumentException( "incorrect number of parameters passed invoking function " + FunctionName + - "expected " + OUString::number(nFParamsLen) + ", got " + OUString::number(InParams.getLength()), + ": expected " + OUString::number(nFParamsLen) + ", got " + OUString::number(InParams.getLength()), static_cast<OWeakObject *>(this), sal_Int16(1) ); } |