From cadc1218c8c8932464eacf0d6a75330e8ac45266 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 19 Mar 2011 11:12:48 +0000 Subject: C, style changes (mostly white space edits), no functional change. --- source/blender/python/intern/bpy_rna_callback.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python/intern/bpy_rna_callback.c') diff --git a/source/blender/python/intern/bpy_rna_callback.c b/source/blender/python/intern/bpy_rna_callback.c index 7581eb16a9d..20f5c6c522e 100644 --- a/source/blender/python/intern/bpy_rna_callback.c +++ b/source/blender/python/intern/bpy_rna_callback.c @@ -57,7 +57,7 @@ static void cb_region_draw(const bContext *C, ARegion *UNUSED(ar), void *customd cb_func= PyTuple_GET_ITEM((PyObject *)customdata, 0); cb_args= PyTuple_GET_ITEM((PyObject *)customdata, 1); - result = PyObject_CallObject(cb_func, cb_args); + result= PyObject_CallObject(cb_func, cb_args); if(result) { Py_DECREF(result); @@ -88,7 +88,7 @@ PyObject *pyrna_callback_add(BPy_StructRNA *self, PyObject *args) if(RNA_struct_is_a(self->ptr.type, &RNA_Region)) { if(cb_event_str) { - static EnumPropertyItem region_draw_mode_items[] = { + static EnumPropertyItem region_draw_mode_items[]= { {REGION_DRAW_POST_PIXEL, "POST_PIXEL", 0, "Post Pixel", ""}, {REGION_DRAW_POST_VIEW, "POST_VIEW", 0, "Post View", ""}, {REGION_DRAW_PRE_VIEW, "PRE_VIEW", 0, "Pre View", ""}, -- cgit v1.2.3