Fix typos

It passed "make check"

Change-Id: I055017a7616ed4d9725c66a387c040b55e22751f
Reviewed-on: https://gerrit.libreoffice.org/76202
Tested-by: Jenkins
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
This commit is contained in:
Andrea Gelmini
2019-07-23 19:51:26 +02:00
parent 650a836d00
commit d29bd2ac60
18 changed files with 24 additions and 24 deletions

View File

@@ -375,7 +375,7 @@ static int derivedFromCount(QualType qt, const CXXRecordDecl* baseRecord)
*/
static bool isDerivedFrom(const CXXRecordDecl* subtypeRecord, const CXXRecordDecl* baseRecord)
{
// if there is more than one case, then we have an ambigous conversion, and we can't change the code
// if there is more than one case, then we have an ambiguous conversion, and we can't change the code
// to use the upcasting constructor.
return derivedFromCount(subtypeRecord, baseRecord) == 1;
}