summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-17 17:41:07 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-08-17 19:42:42 +0200
commitd7484b08c636801b474582c1e940dc8e497b74e8 (patch)
treef12af51b7e91c2b4aa5c2d5754011d37e275bcc9 /basic
parentbda18edf18f30cabb1c6589c59afc77f38541220 (diff)
Fix typos
Change-Id: Id31299912b822baf9eecbb03cba53339f0528ae8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100867 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basic')
-rw-r--r--basic/qa/vba_tests/partition.vb2
-rw-r--r--basic/source/classes/sb.cxx2
-rw-r--r--basic/source/classes/sbunoobj.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/basic/qa/vba_tests/partition.vb b/basic/qa/vba_tests/partition.vb
index d134a4227fbd..e4c2bda6743e 100644
--- a/basic/qa/vba_tests/partition.vb
+++ b/basic/qa/vba_tests/partition.vb
@@ -48,7 +48,7 @@ Function verify_testPartition() as String
verify_testPartition = result
Exit Function
errorHandler:
- TestLog_ASSERT (false), "verify_testPartion failed, hit error handler"
+ TestLog_ASSERT (false), "verify_testPartition failed, hit error handler"
End Function
Sub TestLog_ASSERT(assertion As Boolean, Optional testId As String, Optional testComment As String)
diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx
index c9f34e90ae16..a2c1e165c8db 100644
--- a/basic/source/classes/sb.cxx
+++ b/basic/source/classes/sb.cxx
@@ -1767,7 +1767,7 @@ bool StarBASIC::LoadData( SvStream& r, sal_uInt16 nVer )
return false;
}
// #95459 Delete dialogs, otherwise endless recursion
- // in SbxVarable::GetType() if dialogs are accessed
+ // in SbxVariable::GetType() if dialogs are accessed
sal_uInt32 nObjCount = pObjs->Count32();
std::unique_ptr<SbxVariable*[]> ppDeleteTab(new SbxVariable*[ nObjCount ]);
sal_uInt32 nObj;
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 8ce98b6c3b48..f004cce017d8 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -1545,7 +1545,7 @@ static Any invokeAutomationMethod( const OUString& Name, Sequence< Any > const &
return aRetAny;
}
-// Debugging help method to readout the imlemented interfaces of an object
+// Debugging help method to readout the implemented interfaces of an object
static OUString Impl_GetInterfaceInfo( const Reference< XInterface >& x, const Reference< XIdlClass >& xClass, sal_uInt16 nRekLevel )
{
Type aIfaceType = cppu::UnoType<XInterface>::get();
@@ -1734,7 +1734,7 @@ bool checkUnoObjectType(SbUnoObject& rUnoObj, const OUString& rClass)
return bResult;
}
-// Debugging help method to readout the imlemented interfaces of an object
+// Debugging help method to readout the implemented interfaces of an object
static OUString Impl_GetSupportedInterfaces(SbUnoObject& rUnoObj)
{
Any aToInspectObj = rUnoObj.getUnoAny();