From ef742319f5677ac230396db15d010bbb3e3bfaa7 Mon Sep 17 00:00:00 2001 From: JinYong Park Date: Fri, 27 Oct 2017 11:29:58 +0900 Subject: [PATCH] elm_box: add missing parameter description Summary: Add missing parameter description to remove doxygen warning Test Plan: API Doxygen Revision Reviewers: cedric, jpeg, myoungwoon, Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D5391 --- src/lib/elementary/elm_box_common.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_box_common.h b/src/lib/elementary/elm_box_common.h index 977501adfa..f16b72ce98 100644 --- a/src/lib/elementary/elm_box_common.h +++ b/src/lib/elementary/elm_box_common.h @@ -19,6 +19,10 @@ typedef struct _Elm_Box_Transition Elm_Box_Transition; /** * Special layout function that animates the transition from one layout to another * + * @param obj The object. + * @param priv The smart object instance data. + * @param data Data will be passed to function. + * * Normally, when switching the layout function for a box, this will be * reflected immediately on screen on the next render, but it's also * possible to do this through an animated transition. @@ -36,7 +40,7 @@ typedef struct _Elm_Box_Transition Elm_Box_Transition; * NULL, // data for final layout * NULL, // free function for final data * anim_end, // will be called when animation ends - * NULL); // data for anim_end function\ + * NULL); // data for anim_end function * elm_box_layout_set(box, elm_box_layout_transition, t, * elm_box_transition_free); * @endcode