style cleanup

This commit is contained in:
Campbell Barton
2012-10-26 04:14:10 +00:00
parent e5a31eff37
commit 0e494b74c4
73 changed files with 169 additions and 168 deletions

View File

@@ -1407,7 +1407,7 @@ static int convert_exec(bContext *C, wmOperator *op)
* cases this doesnt give correct results (when MDEF is used for eg) * cases this doesnt give correct results (when MDEF is used for eg)
*/ */
dm = mesh_get_derived_final(scene, newob, CD_MASK_MESH); dm = mesh_get_derived_final(scene, newob, CD_MASK_MESH);
/* dm= mesh_create_derived_no_deform(ob1, NULL); this was called original (instead of get_derived). man o man why! (ton) */ // dm = mesh_create_derived_no_deform(ob1, NULL); /* this was called original (instead of get_derived). man o man why! (ton) */
DM_to_mesh(dm, newob->data, newob); DM_to_mesh(dm, newob->data, newob);

View File

@@ -280,7 +280,7 @@ static void file_draw_icon(uiBlock *block, char *path, int sx, int sy, int icon,
{ {
uiBut *but; uiBut *but;
int x, y; int x, y;
/*float alpha=1.0f;*/ // float alpha = 1.0f;
x = sx; x = sx;
y = sy - height; y = sy - height;

View File

@@ -664,7 +664,8 @@ PyObject *pyrna_py_from_array_index(BPy_PropertyArrayRNA *self, PointerRNA *ptr,
len = RNA_property_multi_array_length(ptr, prop, arraydim); len = RNA_property_multi_array_length(ptr, prop, arraydim);
if (index >= len || index < 0) { if (index >= len || index < 0) {
/* this shouldn't happen because higher level funcs must check for invalid index */ /* this shouldn't happen because higher level funcs must check for invalid index */
if (G.debug & G_DEBUG_PYTHON) printf("pyrna_py_from_array_index: invalid index %d for array with length=%d\n", index, len); if (G.debug & G_DEBUG_PYTHON)
printf("%s: invalid index %d for array with length=%d\n", __func__, index, len);
PyErr_SetString(PyExc_IndexError, "out of range"); PyErr_SetString(PyExc_IndexError, "out of range");
return NULL; return NULL;