summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2024-06-28 20:49:38 +0200
committerJulien Nabet <serval2412@yahoo.fr>2024-06-28 22:23:17 +0200
commit16d58ad8d3423380aeb8588c50eaef10fc92c18d (patch)
tree21713829357ac2e48efe3137cf9fc9b714e5c8c1
parent93987194f5dee2b917e32c18b8a377be95f0ab71 (diff)
Fix "lets" -> "let's"
Change-Id: Ibe6cbbd618aab5c145913235dc90fec3c98cd504 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169723 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--compilerplugins/clang/store/checkunusedparams.cxx2
-rw-r--r--filter/source/msfilter/msdffimp.cxx2
-rw-r--r--sal/qa/rtl/alloc/rtl_alloc.cxx2
-rw-r--r--sc/source/filter/oox/worksheethelper.cxx2
-rw-r--r--unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx2
-rw-r--r--unoxml/source/dom/documentbuilder.cxx2
-rw-r--r--vcl/unx/gtk3/gtksalmenu.cxx2
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentDeserializer.java2
-rw-r--r--xmloff/source/table/XMLTableImport.cxx2
9 files changed, 9 insertions, 9 deletions
diff --git a/compilerplugins/clang/store/checkunusedparams.cxx b/compilerplugins/clang/store/checkunusedparams.cxx
index 2f45049632d3..33916b4810bb 100644
--- a/compilerplugins/clang/store/checkunusedparams.cxx
+++ b/compilerplugins/clang/store/checkunusedparams.cxx
@@ -147,7 +147,7 @@ void CheckUnusedParams::checkForFunctionDecl(Expr const * expr, bool bCheckOnly)
static int noFieldsInRecord(RecordType const * recordType) {
auto recordDecl = recordType->getDecl();
- // if it's complicated, lets just assume it has fields
+ // if it's complicated, let's just assume it has fields
if (isa<ClassTemplateSpecializationDecl>(recordDecl))
return 1;
return std::distance(recordDecl->field_begin(), recordDecl->field_end());
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 4089fcfba91d..28819f802134 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -3894,7 +3894,7 @@ rtl::Reference<SdrObject> SvxMSDffManager::ImportGraphic( SvStream& rSt, SfxItem
if ( !bGrfRead )
{
/*
- Still no luck, lets look at the end of this record for a FBSE pool,
+ Still no luck, let's look at the end of this record for a FBSE pool,
this fallback is a specific case for how word does it sometimes
*/
bool bOk = rObjData.rSpHd.SeekToEndOfRecord( rSt );
diff --git a/sal/qa/rtl/alloc/rtl_alloc.cxx b/sal/qa/rtl/alloc/rtl_alloc.cxx
index 2364f3fe56cf..0e743cae3c11 100644
--- a/sal/qa/rtl/alloc/rtl_alloc.cxx
+++ b/sal/qa/rtl/alloc/rtl_alloc.cxx
@@ -190,7 +190,7 @@ public:
void test2()
{
- // should never happen but lets try it again.
+ // should never happen but let's try it again.
test();
}
diff --git a/sc/source/filter/oox/worksheethelper.cxx b/sc/source/filter/oox/worksheethelper.cxx
index 495cc0ff7828..39a24a2303b3 100644
--- a/sc/source/filter/oox/worksheethelper.cxx
+++ b/sc/source/filter/oox/worksheethelper.cxx
@@ -1074,7 +1074,7 @@ void WorksheetGlobals::insertHyperlink( const ScAddress& rAddress, const OUStrin
// Handle other cell types e.g. formulas ( and ? ) that have associated
// hyperlinks.
// Ideally all hyperlinks should be treated as below. For the moment,
- // given the current absence of ods support lets just handle what we
+ // given the current absence of ods support let's just handle what we
// previously didn't handle the new way.
// Unfortunately we won't be able to preserve such hyperlinks when
// saving to ods. Note: when we are able to save such hyperlinks to ods
diff --git a/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx b/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx
index 5ad175b9d0ef..98c5ea3cbe26 100644
--- a/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx
+++ b/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx
@@ -42,7 +42,7 @@ using namespace com::sun::star;
//But we can't setup and tear down the root component context for
//every test because all the uno singletons will be invalid after
-//the first dispose. So lets setup the default context once before
+//the first dispose. So let's setup the default context once before
//all tests are run, and tear it down once after all have finished
class Prot : public CppUnit::Protector
diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx
index 46232463497d..3be49adcd899 100644
--- a/unoxml/source/dom/documentbuilder.cxx
+++ b/unoxml/source/dom/documentbuilder.cxx
@@ -369,7 +369,7 @@ namespace DOM
Reference< XDocument > xRet;
- // if we failed to parse the URI as a simple file, lets try via a ucb stream.
+ // if we failed to parse the URI as a simple file, let's try via a ucb stream.
// For Android file:///assets/ URLs which must go via the osl/ file API.
if (pDoc == nullptr) {
Reference < XSimpleFileAccess3 > xStreamAccess(
diff --git a/vcl/unx/gtk3/gtksalmenu.cxx b/vcl/unx/gtk3/gtksalmenu.cxx
index ddfa5ef36b48..96e362428b9d 100644
--- a/vcl/unx/gtk3/gtksalmenu.cxx
+++ b/vcl/unx/gtk3/gtksalmenu.cxx
@@ -1054,7 +1054,7 @@ void GtkSalMenu::ApplyPersona()
if (!mpMenuBarContainerWidget)
return;
assert(mbMenuBar);
- // I'm dubious about the persona theming feature, but as it exists, lets try and support
+ // I'm dubious about the persona theming feature, but as it exists, let's try and support
// it, apply the image to the mpMenuBarContainerWidget
const BitmapEx& rPersonaBitmap = Application::GetSettings().GetStyleSettings().GetPersonaHeader();
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentDeserializer.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentDeserializer.java
index 1523b9089585..a969d179c3b8 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentDeserializer.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentDeserializer.java
@@ -511,7 +511,7 @@ public abstract class SxcDocumentDeserializer implements OfficeConstants,
col = newCol;
}
- // Lets start dealing with the cell data
+ // Let's start dealing with the cell data
Debug.log(Debug.TRACE, "<td>");
// Get the cell's contents
diff --git a/xmloff/source/table/XMLTableImport.cxx b/xmloff/source/table/XMLTableImport.cxx
index 20e11b89048d..af7b849989eb 100644
--- a/xmloff/source/table/XMLTableImport.cxx
+++ b/xmloff/source/table/XMLTableImport.cxx
@@ -671,7 +671,7 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > XMLCellImportContext::
SvXMLImportContext * pContext = nullptr;
- // if we have a text cursor, lets try to import some text
+ // if we have a text cursor, let's try to import some text
if( mxCursor.is() )
{
pContext = GetImport().GetTextImport()->CreateTextChildContext( GetImport(), nElement, xAttrList );