From aa80eaeeabd9424f7e09227940c2f8b6c817f07f Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Fri, 28 Jun 2024 20:40:44 +0200 Subject: [PATCH] Fix "lets see" -> "let's see" Change-Id: I7aa939681720bc0dc81c8f114a3608a8cdfb4f60 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169722 Tested-by: Julien Nabet Reviewed-by: Julien Nabet --- connectivity/source/parse/sqlnode.cxx | 2 +- editeng/source/editeng/impedit3.cxx | 2 +- .../source/characterclassification/cclass_unicode_parser.cxx | 2 +- include/sal/config.h | 2 +- sc/source/core/tool/address.cxx | 2 +- sw/source/filter/ww8/ww8atr.cxx | 2 +- toolkit/inc/controls/controlmodelcontainerbase.hxx | 2 +- vcl/unx/generic/dtrans/X11_selection.cxx | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx index ca4521b05e7d..89d3d30779e6 100644 --- a/connectivity/source/parse/sqlnode.cxx +++ b/connectivity/source/parse/sqlnode.cxx @@ -387,7 +387,7 @@ void OSQLParseNode::impl_parseNodeToString_throw(OUStringBuffer& rString, const return; } - // Lets see how many nodes this subtree has + // Let's see how many nodes this subtree has sal_uInt32 nCount = count(); bool bHandled = false; diff --git a/editeng/source/editeng/impedit3.cxx b/editeng/source/editeng/impedit3.cxx index 7c1ccc19cfa8..5014f8c03576 100644 --- a/editeng/source/editeng/impedit3.cxx +++ b/editeng/source/editeng/impedit3.cxx @@ -3246,7 +3246,7 @@ void ImpEditEngine::RecalcFormatterFontMetrics( FormatterFontMetric& rCurMetrics // Fonts without leading cause problems if ( ( nIntLeading == 0 ) && (mpRefDev->GetOutDevType() == OUTDEV_PRINTER)) { - // Lets see what Leading one gets on the screen + // Let's see what Leading one gets on the screen VclPtr pVDev = GetVirtualDevice(mpRefDev->GetMapMode(), mpRefDev->GetDrawMode()); rFont.SetPhysFont(*pVDev); aMetric = pVDev->GetFontMetric(); diff --git a/i18npool/source/characterclassification/cclass_unicode_parser.cxx b/i18npool/source/characterclassification/cclass_unicode_parser.cxx index 9ed95e2f907a..6e27415bdf15 100644 --- a/i18npool/source/characterclassification/cclass_unicode_parser.cxx +++ b/i18npool/source/characterclassification/cclass_unicode_parser.cxx @@ -651,7 +651,7 @@ ParserFlags cclass_Unicode::getFlagsExtended(sal_uInt32 const c, const cclass_Un return ((nTypes & KParseTokens::IGNORE_LEADING_WS) ? ParserFlags::CHAR_DONTCARE : (bStart ? ParserFlags::CHAR_WORD : (ParserFlags::CHAR_DONTCARE | ParserFlags::WORD_SEP | ParserFlags::VALUE_SEP) )); case U_OTHER_PUNCTUATION: - // fdo#61754 Lets see (if we not at the start) if this is midletter + // fdo#61754 Let's see (if we not at the start) if this is midletter // punctuation and allow it in a word if it is similarly to // U_NON_SPACING_MARK, for example U+00B7 MIDDLE DOT. // tdf#123575 for U+30FB KATAKANA MIDDLE DOT property is not diff --git a/include/sal/config.h b/include/sal/config.h index 5d6bd3459287..f666fed23897 100644 --- a/include/sal/config.h +++ b/include/sal/config.h @@ -108,7 +108,7 @@ #if __has_warning("-Wpotentially-evaluated-expression") #pragma GCC diagnostic ignored "-Wpotentially-evaluated-expression" #endif -// Before fixing occurrences of this warning, lets see whether C++20 will still change to obsolete +// Before fixing occurrences of this warning, let's see whether C++20 will still change to obsolete // the warning (see // "[c++20] // Add rewriting from comparison operators to <=> / =="): diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx index ffbeb495d4ab..cbd32ae3c849 100644 --- a/sc/source/core/tool/address.cxx +++ b/sc/source/core/tool/address.cxx @@ -1159,7 +1159,7 @@ static ScRefFlags lcl_ScAddress_Parse_OOo( const sal_Unicode* p, const ScDocumen bool bExtDoc = false; bool bExtDocInherited = false; - // Lets see if this is a reference to something in an external file. A + // Let's see if this is a reference to something in an external file. A // document name is always quoted and has a trailing #. if (*p == '\'') { diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx index c2377fbb916b..639f43a47a95 100644 --- a/sw/source/filter/ww8/ww8atr.cxx +++ b/sw/source/filter/ww8/ww8atr.cxx @@ -644,7 +644,7 @@ void MSWordExportBase::OutputSectionBreaks( const SfxItemSet *pSet, const SwNode /* #i9301# - No explicit page break, lets see if the style had one and we've moved to a + No explicit page break, let's see if the style had one and we've moved to a new page style because of it, if we have to then we take the opportunity to set the equivalent word section here. We *could* do it for every paragraph that moves onto a new page because of layout, but that would be insane. diff --git a/toolkit/inc/controls/controlmodelcontainerbase.hxx b/toolkit/inc/controls/controlmodelcontainerbase.hxx index ae414346c78f..d8efbcf700bc 100644 --- a/toolkit/inc/controls/controlmodelcontainerbase.hxx +++ b/toolkit/inc/controls/controlmodelcontainerbase.hxx @@ -259,7 +259,7 @@ public: void SAL_CALL setDesignMode( sal_Bool bOn ) override; // XModifyListener // Using a dummy/no-op implementation here, not sure if every container control needs - // to implement this, certainly Dialog does, lets see about others + // to implement this, certainly Dialog does, let's see about others virtual void SAL_CALL modified( const css::lang::EventObject& ) override {} protected: virtual void ImplModelPropertiesChanged( const css::uno::Sequence< css::beans::PropertyChangeEvent >& rEvents ) override; diff --git a/vcl/unx/generic/dtrans/X11_selection.cxx b/vcl/unx/generic/dtrans/X11_selection.cxx index e3ef6e9e2c6f..097de9c04311 100644 --- a/vcl/unx/generic/dtrans/X11_selection.cxx +++ b/vcl/unx/generic/dtrans/X11_selection.cxx @@ -1013,7 +1013,7 @@ bool SelectionManager::getPasteData( Atom selection, const OUString& rType, Sequ if( rType == "text/plain;charset=utf-16" ) { - // lets see if we have UTF16 else try to find something convertible + // let's see if we have UTF16 else try to find something convertible if( it->second->m_aTypes.getLength() && ! it->second->m_bHaveUTF16 ) { Sequence< sal_Int8 > aData;