diff options
Diffstat (limited to 'src/lib/elementary')
-rw-r--r-- | src/lib/elementary/elm_box_common.h | 6 |
1 files changed, 5 insertions, 1 deletions
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; | |||
19 | /** | 19 | /** |
20 | * Special layout function that animates the transition from one layout to another | 20 | * Special layout function that animates the transition from one layout to another |
21 | * | 21 | * |
22 | * @param obj The object. | ||
23 | * @param priv The smart object instance data. | ||
24 | * @param data Data will be passed to function. | ||
25 | * | ||
22 | * Normally, when switching the layout function for a box, this will be | 26 | * Normally, when switching the layout function for a box, this will be |
23 | * reflected immediately on screen on the next render, but it's also | 27 | * reflected immediately on screen on the next render, but it's also |
24 | * possible to do this through an animated transition. | 28 | * possible to do this through an animated transition. |
@@ -36,7 +40,7 @@ typedef struct _Elm_Box_Transition Elm_Box_Transition; | |||
36 | * NULL, // data for final layout | 40 | * NULL, // data for final layout |
37 | * NULL, // free function for final data | 41 | * NULL, // free function for final data |
38 | * anim_end, // will be called when animation ends | 42 | * anim_end, // will be called when animation ends |
39 | * NULL); // data for anim_end function\ | 43 | * NULL); // data for anim_end function |
40 | * elm_box_layout_set(box, elm_box_layout_transition, t, | 44 | * elm_box_layout_set(box, elm_box_layout_transition, t, |
41 | * elm_box_transition_free); | 45 | * elm_box_transition_free); |
42 | * @endcode | 46 | * @endcode |