summaryrefslogtreecommitdiff
path: root/pyuno/source
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-11-25 22:05:13 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-11-25 22:05:13 +0100
commit983e0332737c9bdb114ca2132f4c90d33428dbba (patch)
tree2ec31e95004e836fdc61095110cd78dc8d74f11c /pyuno/source
parent396dd770eb8e12b89865b2e2b899b801e4e6bd34 (diff)
Fix different typos for "unknown"
Change-Id: Ib2ee00d4e9f4c6c05d090adfcd5fb791fcbca72c
Diffstat (limited to 'pyuno/source')
-rw-r--r--pyuno/source/module/pyuno_runtime.cxx2
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 > () );
}