From 7e65b02fb616a4b71a2ec58a4e544a3ce5c0c94c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 24 Mar 2016 18:05:10 +1100 Subject: Cleanup: use prefix for return args --- source/blender/blenkernel/BKE_fcurve.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'source/blender/blenkernel/BKE_fcurve.h') diff --git a/source/blender/blenkernel/BKE_fcurve.h b/source/blender/blenkernel/BKE_fcurve.h index ff2880ab311..3db104aea73 100644 --- a/source/blender/blenkernel/BKE_fcurve.h +++ b/source/blender/blenkernel/BKE_fcurve.h @@ -226,11 +226,14 @@ struct FCurve *id_data_find_fcurve(ID *id, void *data, struct StructRNA *type, c int list_find_data_fcurves(ListBase *dst, ListBase *src, const char *dataPrefix, const char *dataName); /* Find an f-curve based on an rna property. */ -struct FCurve *rna_get_fcurve(struct PointerRNA *ptr, struct PropertyRNA *prop, int rnaindex, - struct AnimData **adt, struct bAction **action, bool *r_driven, bool *r_special); +struct FCurve *rna_get_fcurve( + struct PointerRNA *ptr, struct PropertyRNA *prop, int rnaindex, + struct AnimData **r_adt, struct bAction **r_action, + bool *r_driven, bool *r_special); /* Same as above, but takes a context data, temp hack needed for complex paths like texture ones. */ -struct FCurve *rna_get_fcurve_context_ui(struct bContext *C, struct PointerRNA *ptr, struct PropertyRNA *prop, - int rnaindex, struct AnimData **adt, struct bAction **action, bool *r_driven, bool *r_special); +struct FCurve *rna_get_fcurve_context_ui( + struct bContext *C, struct PointerRNA *ptr, struct PropertyRNA *prop, int rnaindex, + struct AnimData **r_adt, struct bAction **r_action, bool *r_driven, bool *r_special); /* Binary search algorithm for finding where to 'insert' BezTriple with given frame number. * Returns the index to insert at (data already at that index will be offset if replace is 0) -- cgit v1.2.3