diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-11-25 22:05:13 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-11-25 22:05:13 +0100 |
commit | 983e0332737c9bdb114ca2132f4c90d33428dbba (patch) | |
tree | 2ec31e95004e836fdc61095110cd78dc8d74f11c /pyuno | |
parent | 396dd770eb8e12b89865b2e2b899b801e4e6bd34 (diff) |
Fix different typos for "unknown"
Change-Id: Ib2ee00d4e9f4c6c05d090adfcd5fb791fcbca72c
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_runtime.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx index bb7cb8e65d81..5f85ca054252 100644 --- a/pyuno/source/module/pyuno_runtime.cxx +++ b/pyuno/source/module/pyuno_runtime.cxx @@ -566,7 +566,7 @@ PyRef Runtime::any2PyObject (const Any &a ) const default: { OUStringBuffer buf; - buf.appendAscii( "Unknonwn UNO type class " ); + buf.appendAscii( "Unknown UNO type class " ); buf.append( (sal_Int32 ) a.getValueTypeClass() ); throw RuntimeException(buf.makeStringAndClear( ), Reference< XInterface > () ); } |