From a2c182e9233333fc3b8ff40d352113ec95e7e30c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 3 Mar 2012 16:31:46 +0000 Subject: style cleanup - use aligned * prefixed blocks for descriptive comments (was already used a lot and part of proposed style guide). --- source/blender/editors/object/object_group.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/object/object_group.c') diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c index 1b8c0fd0840..d5dfbda8696 100644 --- a/source/blender/editors/object/object_group.c +++ b/source/blender/editors/object/object_group.c @@ -70,7 +70,7 @@ static int objects_add_active_exec(bContext *C, wmOperator *op) if(!ob) return OPERATOR_CANCELLED; /* linking to same group requires its own loop so we can avoid - looking up the active objects groups each time */ + * looking up the active objects groups each time */ for(group= bmain->group.first; group; group=group->id.next) { if(object_in_group(ob, group)) { @@ -117,7 +117,7 @@ static int objects_remove_active_exec(bContext *C, wmOperator *op) if(!ob) return OPERATOR_CANCELLED; /* linking to same group requires its own loop so we can avoid - looking up the active objects groups each time */ + * looking up the active objects groups each time */ for(group= bmain->group.first; group; group=group->id.next) { if(object_in_group(ob, group)) { -- cgit v1.2.3