Fix typos discovered by codespell

This commit is contained in:
Christian Clauss
2021-08-07 18:55:49 +02:00
parent 64e5d863f7
commit 25ba122168
155 changed files with 413 additions and 413 deletions

View File

@@ -457,10 +457,10 @@ typedef struct _sipInitExtenderDef {
/*
* The information describing a sub-class convertor.
* The information describing a sub-class converter.
*/
typedef struct _sipSubClassConvertorDef {
/* The convertor. */
/* The converter. */
sipSubClassConvertFunc scc_convertor;
/* The encoded base type. */
@@ -1105,7 +1105,7 @@ typedef struct _sipExportedModuleDef {
/* The table of virtual error handlers. */
sipVirtErrorHandlerDef *em_virterrorhandlers;
/* The sub-class convertors. */
/* The sub-class converters. */
sipSubClassConvertorDef *em_convertors;
/* The static instances. */
@@ -1677,7 +1677,7 @@ typedef struct _sipQtAPI {
* sipConvertToType() and sipForceConvertToType().
*/
#define SIP_NOT_NONE 0x01 /* Disallow None. */
#define SIP_NO_CONVERTORS 0x02 /* Disable any type convertors. */
#define SIP_NO_CONVERTORS 0x02 /* Disable any type converters. */
/*
@@ -1743,7 +1743,7 @@ typedef struct _sipQtAPI {
#define SIP_TYPE_ENUM 0x0003 /* If the type is a named enum. */
#define SIP_TYPE_SCOPED_ENUM 0x0004 /* If the type is a scoped enum. */
#define SIP_TYPE_ABSTRACT 0x0008 /* If the type is abstract. */
#define SIP_TYPE_SCC 0x0010 /* If the type is subject to sub-class convertors. */
#define SIP_TYPE_SCC 0x0010 /* If the type is subject to sub-class converters. */
#define SIP_TYPE_ALLOW_NONE 0x0020 /* If the type can handle None. */
#define SIP_TYPE_STUB 0x0040 /* If the type is a stub. */
#define SIP_TYPE_NONLAZY 0x0080 /* If the type has a non-lazy method. */

View File

@@ -74,7 +74,7 @@ inline void wxPyEndAllowThreads(PyThreadState* saved) {
// A macro that will help to execute simple statments wrapped in
// A macro that will help to execute simple statements wrapped in
// StartBlock/EndBlockThreads calls
#define wxPyBLOCK_THREADS(stmt) \
{ wxPyThreadBlocker _blocker; stmt; }