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>
This commit is contained in:
committed by
Julien Nabet
parent
93987194f5
commit
16d58ad8d3
@@ -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());
|
||||
|
@@ -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 );
|
||||
|
@@ -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();
|
||||
}
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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(
|
||||
|
@@ -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();
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -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 );
|
||||
|
Reference in New Issue
Block a user