Cleanup: use return argument prefix

This commit is contained in:
Campbell Barton
2021-02-14 11:38:04 +11:00
parent fa093ef2ff
commit 2ff2900f7f
2 changed files with 12 additions and 12 deletions

View File

@@ -312,11 +312,11 @@ void ACTION_OT_previewrange_set(wmOperatorType *ot)
/**
* Find the extents of the active channel
*
* \param[out] min: Bottom y-extent of channel
* \param[out] max: Top y-extent of channel
* \return Success of finding a selected channel
* \param r_min: Bottom y-extent of channel.
* \param r_max: Top y-extent of channel.
* \return Success of finding a selected channel.
*/
static bool actkeys_channels_get_selected_extents(bAnimContext *ac, float *min, float *max)
static bool actkeys_channels_get_selected_extents(bAnimContext *ac, float *r_min, float *r_max)
{
ListBase anim_data = {NULL, NULL};
bAnimListElem *ale;
@@ -339,8 +339,8 @@ static bool actkeys_channels_get_selected_extents(bAnimContext *ac, float *min,
if (acf && acf->has_setting(ac, ale, ACHANNEL_SETTING_SELECT) &&
ANIM_channel_setting_get(ac, ale, ACHANNEL_SETTING_SELECT)) {
/* update best estimate */
*min = ymax - ACHANNEL_HEIGHT(ac);
*max = ymax;
*r_min = ymax - ACHANNEL_HEIGHT(ac);
*r_max = ymax;
/* is this high enough priority yet? */
found = acf->channel_role;

View File

@@ -406,11 +406,11 @@ void NLA_OT_previewrange_set(wmOperatorType *ot)
/**
* Find the extents of the active channel
*
* \param[out] min: Bottom y-extent of channel.
* \param[out] max: Top y-extent of channel.
* \return Success of finding a selected channel
* \param r_min: Bottom y-extent of channel.
* \param r_max: Top y-extent of channel.
* \return Success of finding a selected channel.
*/
static bool nla_channels_get_selected_extents(bAnimContext *ac, float *min, float *max)
static bool nla_channels_get_selected_extents(bAnimContext *ac, float *r_min, float *r_max)
{
ListBase anim_data = {NULL, NULL};
bAnimListElem *ale;
@@ -434,8 +434,8 @@ static bool nla_channels_get_selected_extents(bAnimContext *ac, float *min, floa
if (acf && acf->has_setting(ac, ale, ACHANNEL_SETTING_SELECT) &&
ANIM_channel_setting_get(ac, ale, ACHANNEL_SETTING_SELECT)) {
/* update best estimate */
*min = ymax - NLACHANNEL_HEIGHT(snla);
*max = ymax;
*r_min = ymax - NLACHANNEL_HEIGHT(snla);
*r_max = ymax;
/* is this high enough priority yet? */
found = acf->channel_role;