From 024d40b504e4dc2a23824021bdcfe772a1f5f670 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 22 Apr 2019 02:48:05 +1000 Subject: Cleanup: comments (long lines) in makesrna --- source/blender/makesrna/intern/rna_action.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'source/blender/makesrna/intern/rna_action.c') diff --git a/source/blender/makesrna/intern/rna_action.c b/source/blender/makesrna/intern/rna_action.c index 36e9fde9a7a..c9c831e6700 100644 --- a/source/blender/makesrna/intern/rna_action.c +++ b/source/blender/makesrna/intern/rna_action.c @@ -247,7 +247,8 @@ static void rna_Action_frame_range_get(PointerRNA *ptr, float *values) calc_action_range(ptr->id.data, values, values + 1, false); } -/* used to check if an action (value pointer) is suitable to be assigned to the ID-block that is ptr */ +/* Used to check if an action (value pointer) + * is suitable to be assigned to the ID-block that is ptr. */ bool rna_Action_id_poll(PointerRNA *ptr, PointerRNA value) { ID *srcId = (ID *)ptr->id.data; @@ -267,7 +268,8 @@ bool rna_Action_id_poll(PointerRNA *ptr, PointerRNA value) return 0; } -/* used to check if an action (value pointer) can be assigned to Action Editor given current mode */ +/* Used to check if an action (value pointer) + * can be assigned to Action Editor given current mode. */ bool rna_Action_actedit_assign_poll(PointerRNA *ptr, PointerRNA value) { SpaceAction *saction = (SpaceAction *)ptr->data; @@ -769,7 +771,8 @@ static void rna_def_action(BlenderRNA *brna) prop = RNA_def_property(srna, "pose_markers", PROP_COLLECTION, PROP_NONE); RNA_def_property_collection_sdna(prop, NULL, "markers", NULL); RNA_def_property_struct_type(prop, "TimelineMarker"); - /* Use lib exception so the list isn't grayed out; adding/removing is still banned though, see T45689 */ + /* Use lib exception so the list isn't grayed out; + * adding/removing is still banned though, see T45689. */ RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); RNA_def_property_ui_text( prop, "Pose Markers", "Markers specific to this action, for labeling poses"); -- cgit v1.2.3