From: JinYong Park Date: Fri, 27 Oct 2017 02:29:58 +0000 (+0900) Subject: elm_box: add missing parameter description X-Git-Tag: submit/sandbox/upgrade/efl120/20180319.053334~2023 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef742319f5677ac230396db15d010bbb3e3bfaa7;p=platform%2Fupstream%2Fefl.git 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 --- diff --git a/src/lib/elementary/elm_box_common.h b/src/lib/elementary/elm_box_common.h index 977501a..f16b72c 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