summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-23 17:29:22 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-23 17:29:22 +0100
commit94477cb5fb6e982035867b198eee7cfa8622c5e3 (patch)
tree79993199790f269b260968eb07cb91e3b1291cc9 /basic
parent3a014901fdc4134f4fae669b66b154b1137c2352 (diff)
Fix typo accessable/accessible
Change-Id: I2f6d00a6361243a52a593acaaf2bf624d8a2730e
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbunoobj.cxx10
1 files changed, 5 insertions, 5 deletions
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 >() );
}
}