style cleanup: spelling.

also remove large, duplicate comments from sunsky.h
This commit is contained in:
2012-03-09 00:41:09 +00:00
parent 27d43f3fd3
commit 4f7bdc59d3
111 changed files with 189 additions and 250 deletions

View File

@@ -433,7 +433,7 @@ static PyObject *pyop_getinstance(PyObject *UNUSED(self), PyObject *value)
op = PyMem_MALLOC(sizeof(wmOperator));
memset(op, 0, sizeof(wmOperator));
#endif
BLI_strncpy(op->idname, op->idname, sizeof(op->idname)); /* incase its needed */
BLI_strncpy(op->idname, op->idname, sizeof(op->idname)); /* in case its needed */
op->type = ot;
RNA_pointer_create(NULL, &RNA_Operator, op, &ptr);