From 94477cb5fb6e982035867b198eee7cfa8622c5e3 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 23 Feb 2013 17:29:22 +0100 Subject: Fix typo accessable/accessible Change-Id: I2f6d00a6361243a52a593acaaf2bf624d8a2730e --- basic/source/classes/sbunoobj.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'basic') diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index d773965b5c38..77adc0b2a26e 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -178,12 +178,12 @@ Reference< XIdlReflection > getCoreReflection_Impl( void ) xContext->getValueByName( OUString( "/singletons/com.sun.star.reflection.theCoreReflection" ) ) >>= xCoreReflection; - OSL_ENSURE( xCoreReflection.is(), "### CoreReflection singleton not accessable!?" ); + OSL_ENSURE( xCoreReflection.is(), "### CoreReflection singleton not accessible!?" ); } if( !xCoreReflection.is() ) { throw DeploymentException( - OUString( "/singletons/com.sun.star.reflection.theCoreReflection singleton not accessable" ), + OUString( "/singletons/com.sun.star.reflection.theCoreReflection singleton not accessible" ), Reference< XInterface >() ); } } @@ -222,12 +222,12 @@ Reference< XHierarchicalNameAccess > getTypeProvider_Impl( void ) xContext->getValueByName( OUString( "/singletons/com.sun.star.reflection.theTypeDescriptionManager" ) ) >>= xAccess; - OSL_ENSURE( xAccess.is(), "### TypeDescriptionManager singleton not accessable!?" ); + OSL_ENSURE( xAccess.is(), "### TypeDescriptionManager singleton not accessible!?" ); } if( !xAccess.is() ) { throw DeploymentException( - OUString("/singletons/com.sun.star.reflection.theTypeDescriptionManager singleton not accessable"), + OUString("/singletons/com.sun.star.reflection.theTypeDescriptionManager singleton not accessible"), Reference< XInterface >() ); } } @@ -251,7 +251,7 @@ Reference< XTypeConverter > getTypeConverter_Impl( void ) if( !xTypeConverter.is() ) { throw DeploymentException( - OUString("com.sun.star.script.Converter service not accessable"), + OUString("com.sun.star.script.Converter service not accessible"), Reference< XInterface >() ); } } -- cgit