summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-06-12 23:57:19 +0200
committerJulien Nabet <serval2412@yahoo.fr>2015-06-12 23:57:33 +0200
commit22009c987b88fe9c4f0b5d65555252c05f44b80d (patch)
tree92e5bc09933822568216d054fe228ea7dcc59b2e /pyuno
parent762e90ffa0cd5f85dadd9bad93391d105e60e418 (diff)
Typo: Adapater->Adapter
Change-Id: I696c0693dc7a69dc3a4b8df0c4e8571414d5b9a6
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_adapter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/pyuno_adapter.cxx b/pyuno/source/module/pyuno_adapter.cxx
index 38988b58ac85..1fbfcba1b48b 100644
--- a/pyuno/source/module/pyuno_adapter.cxx
+++ b/pyuno/source/module/pyuno_adapter.cxx
@@ -229,7 +229,7 @@ Any Adapter::invoke( const OUString &aFunctionName,
if( !method.is() )
{
OUStringBuffer buf;
- buf.appendAscii( "pyuno::Adapater: Method " ).append( aFunctionName );
+ buf.appendAscii( "pyuno::Adapter: Method " ).append( aFunctionName );
buf.appendAscii( " is not implemented at object " );
PyRef str( PyObject_Repr( mWrappedObject.get() ), SAL_NO_ACQUIRE );
buf.append(pyString2ustring(str.get()));
@@ -347,7 +347,7 @@ void Adapter::setValue( const OUString & aPropertyName, const Any & value )
if( !hasProperty( aPropertyName ) )
{
OUStringBuffer buf;
- buf.appendAscii( "pyuno::Adapater: Property " ).append( aPropertyName );
+ buf.appendAscii( "pyuno::Adapter: Property " ).append( aPropertyName );
buf.appendAscii( " is unknown." );
throw UnknownPropertyException( buf.makeStringAndClear() );
}
@@ -383,7 +383,7 @@ Any Adapter::getValue( const OUString & aPropertyName )
if (!pyRef.is() || PyErr_Occurred())
{
OUStringBuffer buf;
- buf.appendAscii( "pyuno::Adapater: Property " ).append( aPropertyName );
+ buf.appendAscii( "pyuno::Adapter: Property " ).append( aPropertyName );
buf.appendAscii( " is unknown." );
throw UnknownPropertyException( buf.makeStringAndClear() );
}