[Bf-blender-cvs] [9c9fc62] master: Comments: Note direction in doxy args

Campbell Barton noreply at git.blender.org
Thu May 29 14:05:55 CEST 2014


Commit: 9c9fc626b7e6c4bf08a667d56b6718b8426bf576
Author: Campbell Barton
Date:   Thu May 29 22:05:07 2014 +1000
https://developer.blender.org/rB9c9fc626b7e6c4bf08a667d56b6718b8426bf576

Comments: Note direction in doxy args

===================================================================

M	source/blender/blenkernel/intern/anim_sys.c
M	source/blender/editors/animation/drivers.c
M	source/blender/editors/space_action/action_edit.c
M	source/blender/editors/space_nla/nla_edit.c

===================================================================

diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c
index 776f7c5..f956474 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -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)
 {
diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index ee33f3b..c8db4ae 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -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
  */
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 43cecf1..08dd00c 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -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)
diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c
index ef3bb1a..c787177 100644
--- a/source/blender/editors/space_nla/nla_edit.c
+++ b/source/blender/editors/space_nla/nla_edit.c
@@ -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)




More information about the Bf-blender-cvs mailing list