Spell check fix (lenght -> length)

Note: two remains, in comments in extern/bullet2/src/LinearMath/btVector3.h and extern/libmv/libmv/image/tuple.h.
This commit is contained in:
Bastien Montagne 2012-05-16 14:25:25 +00:00
parent 1f49f335a9
commit 2e89e0096a
5 changed files with 6 additions and 6 deletions

@ -26,7 +26,7 @@ shader node_camera(
ViewVector = (vector)transform("world", "camera", P);
ViewZDepth = fabs(ViewVector[2]);
ViewDistance = lenght(ViewVector);
ViewDistance = length(ViewVector);
ViewVector = normalize(ViewVector);
}

@ -1323,7 +1323,7 @@ void SEQUENCER_OT_reload(struct wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER; /* no undo, the data changed is stored outside 'main' */
prop = RNA_def_boolean(ot->srna, "adjust_length", 0, "Adjust Length",
"Adjust lenght of strips to their data lenght");
"Adjust length of strips to their data length");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}

@ -84,7 +84,7 @@ typedef struct MovieClip {
struct MovieClipProxy proxy; /* proxy to clip data */
int flag;
int len; /* lenght of movie */
int len; /* length of movie */
} MovieClip;
typedef struct MovieClipScopes {

@ -212,7 +212,7 @@ void dna_write(FILE *file, void *pntr, int size);
/**
* Report all structures found so far, and print their lengths.
*/
void printStructLenghts(void);
void printStructLengths(void);
@ -901,7 +901,7 @@ void dna_write(FILE *file, void *pntr, int size)
}
}
void printStructLenghts(void)
void printStructLengths(void)
{
int a, unknown = nr_structs, structtype;
/*int lastunknown;*/ /*UNUSED*/

@ -52,7 +52,7 @@ class SCA_RandomNumberGenerator {
/* unsigned long mt[N]; */
unsigned long mt[624];
/** mti==N+1 means mt[KX_MT_VectorLenght] is not initialized */
/** mti==N+1 means mt[KX_MT_VectorLength] is not initialized */
int mti; /* initialized in the cpp file */
/** Calculate a start vector */