Comments: Note direction in doxy args

This commit is contained in:
Campbell Barton 2014-05-29 22:05:07 +10:00
parent 6bde9a52f9
commit 9c9fc626b7
4 changed files with 6 additions and 6 deletions

@ -2239,7 +2239,7 @@ void nladata_flush_channels(ListBase *channels)
*
* \note This is exported so that keyframing code can use this for make use of it for anim layers support
*
* \param echannels Evaluation channels with calculated values
* \param[out] echannels Evaluation channels with calculated values
*/
static void animsys_evaluate_nla(ListBase *echannels, PointerRNA *ptr, AnimData *adt, float ctime)
{

@ -432,7 +432,7 @@ bool ANIM_paste_driver(ReportList *reports, ID *id, const char rna_path[], int a
* they will get picked up by the dependency system.
*
* \param C Context pointer - for getting active data
* \param ptr RNA pointer for property's datablock. May be modified as result of path remapping.
* \param[in,out] ptr RNA pointer for property's datablock. May be modified as result of path remapping.
* \param prop RNA definition of property to add for
* \return MEM_alloc'd string representing the path to the property from the given #PointerRNA
*/

@ -365,8 +365,8 @@ void ACTION_OT_previewrange_set(wmOperatorType *ot)
/**
* Find the extents of the active channel
*
* \param min Bottom y-extent of channel
* \param max Top y-extent of channel
* \param[out] min Bottom y-extent of channel
* \param[out] 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)

@ -359,8 +359,8 @@ void NLA_OT_previewrange_set(wmOperatorType *ot)
/**
* Find the extents of the active channel
*
* \param min Bottom y-extent of channel
* \param max Top y-extent of channel
* \param[out] min Bottom y-extent of channel
* \param[out] 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)