summaryrefslogtreecommitdiff
path: root/basic/source/classes
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/classes')
-rw-r--r--basic/source/classes/sb.cxx2
-rw-r--r--basic/source/classes/sbunoobj.cxx2
-rw-r--r--basic/source/classes/sbxmod.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx
index 31e918843ed5..57080ca15a09 100644
--- a/basic/source/classes/sb.cxx
+++ b/basic/source/classes/sb.cxx
@@ -1366,7 +1366,7 @@ SbxVariable* StarBASIC::Find( const OUString& rName, SbxClassType t )
pNamed = p;
}
// Only variables qualified by the Module Name e.g. Sheet1.foo
- // should work for Documant && Class type Modules
+ // should work for Document && Class type Modules
sal_Int32 nType = p->GetModuleType();
if ( nType == ModuleType::DOCUMENT || nType == ModuleType::FORM )
{
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index c3a9cc5c102c..299ea38d8a9f 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -1942,7 +1942,7 @@ OUString Impl_DumpMethods( SbUnoObject* pUnoObj )
aRet.append("Methods of object ");
aRet.append( getDbgObjectName( pUnoObj ) );
- // XIntrospectionAccess, so that the types of the parameter could be outputed
+ // XIntrospectionAccess, so that the types of the parameter could be outputted
Reference< XIntrospectionAccess > xAccess = pUnoObj->getIntrospectionAccess();
if( !xAccess.is() )
{
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index ed13469e3e69..1dc43ff20dae 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -1096,7 +1096,7 @@ void SbModule::Run( SbMethod* pMeth )
}
// Launcher problem
- // i80726 The Find below will genarate an error in Testtool so we reset it unless there was one before already
+ // i80726 The Find below will generate an error in Testtool so we reset it unless there was one before already
bool bWasError = SbxBase::GetError() != 0;
SbxVariable* pMSOMacroRuntimeLibVar = Find( "Launcher", SbxCLASS_OBJECT );
if ( !bWasError && (SbxBase::GetError() == ERRCODE_SBX_PROC_UNDEFINED) )