summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbunoobj.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 771a6cd3da33..e90b52ea412c 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -4225,7 +4225,7 @@ void SAL_CALL ModuleInvocationProxy::setValue(const OUString& rProperty, const A
SbMethod* pMeth = dynamic_cast<SbMethod*>( p );
if( pMeth == nullptr )
{
- // TODO: Check vba behavior concernig missing function
+ // TODO: Check vba behavior concerning missing function
//StarBASIC::Error( ERRCODE_BASIC_NO_METHOD, aFunctionName );
throw UnknownPropertyException();
}
@@ -4263,7 +4263,7 @@ Any SAL_CALL ModuleInvocationProxy::getValue(const OUString& rProperty)
SbMethod* pMeth = dynamic_cast<SbMethod*>( p );
if( pMeth == nullptr )
{
- // TODO: Check vba behavior concernig missing function
+ // TODO: Check vba behavior concerning missing function
//StarBASIC::Error( ERRCODE_BASIC_NO_METHOD, aFunctionName );
throw UnknownPropertyException();
}
@@ -4318,7 +4318,7 @@ Any SAL_CALL ModuleInvocationProxy::invoke( const OUString& rFunction,
SbMethod* pMeth = dynamic_cast<SbMethod*>( p );
if( pMeth == nullptr )
{
- // TODO: Check vba behavior concernig missing function
+ // TODO: Check vba behavior concerning missing function
//StarBASIC::Error( ERRCODE_BASIC_NO_METHOD, aFunctionName );
return aRet;
}