summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chart2/source/controller/main/ChartController.cxx2
-rw-r--r--include/osl/file.h2
-rw-r--r--reportdesign/source/ui/report/ReportControllerObserver.cxx2
-rw-r--r--sw/qa/extras/uiwriter/uiwriter.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx
index 5e278b9bf362..307a2a6d27ed 100644
--- a/chart2/source/controller/main/ChartController.cxx
+++ b/chart2/source/controller/main/ChartController.cxx
@@ -188,7 +188,7 @@ void ChartController::TheModel::tryTermination()
try
{
//@todo ? are we allowed to use sal_True here if we have the explicit ownership?
- //I think yes, because there might be other closelistners later in the list which might be interested still
+ //I think yes, because there might be other CloseListeners later in the list which might be interested still
//but make sure that we do not throw the CloseVetoException here ourselves
//so stop listening before trying to terminate or check the source of queryclosing event
m_xCloseable->close(true);
diff --git a/include/osl/file.h b/include/osl/file.h
index 62601b747b55..aa62a690e141 100644
--- a/include/osl/file.h
+++ b/include/osl/file.h
@@ -802,7 +802,7 @@ SAL_DLLPUBLIC oslFileError SAL_CALL osl_getFileSize(
@retval osl_File_E_INVAL invalid file handle, on Unix systems also
can mean that the address, length of the file or the
file offset are too large or not aligned on a page
- boundaryi; on Linux can also mean after Linux 2.6.12
+ boundary; on Linux can also mean after Linux 2.6.12
that the length was set to 0 (illogical.
@retval osl_File_E_OVERFLOW requested mapping size too large,
or the file offset was too large
diff --git a/reportdesign/source/ui/report/ReportControllerObserver.cxx b/reportdesign/source/ui/report/ReportControllerObserver.cxx
index f20239c29869..c2cf2b261a31 100644
--- a/reportdesign/source/ui/report/ReportControllerObserver.cxx
+++ b/reportdesign/source/ui/report/ReportControllerObserver.cxx
@@ -348,7 +348,7 @@ void SAL_CALL OXReportControllerObserver::elementInserted(const container::Conta
SolarMutexGuard aSolarGuard;
::osl::MutexGuard aGuard( m_pImpl->m_aMutex );
- // new listner object
+ // new listener object
uno::Reference< uno::XInterface > xIface( evt.Element, uno::UNO_QUERY );
if ( xIface.is() )
{
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx b/sw/qa/extras/uiwriter/uiwriter.cxx
index 0bd0ba789c19..cbcf944c7521 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -1617,7 +1617,7 @@ void SwUiWriterTest::testXFlatParagraph()
CPPUNIT_ASSERT_EQUAL(OUString("This is sample text"), xFlatPara->getText());
//checking modified status
CPPUNIT_ASSERT(!xFlatPara->isModified());
- //checking "checked" staus, modifying it and asserting the changes
+ //checking "checked" status, modifying it and asserting the changes
CPPUNIT_ASSERT(!xFlatPara->isChecked(sal_Int32(text::TextMarkupType::SPELLCHECK)));
xFlatPara->setChecked((sal_Int32(text::TextMarkupType::SPELLCHECK)), true);
CPPUNIT_ASSERT(xFlatPara->isChecked(sal_Int32(text::TextMarkupType::SPELLCHECK)));