diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-08 21:06:43 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-09 12:21:42 +0900 |
commit | 24500384362f26b9bd8f5a1ee4db664cc98ec3b0 (patch) | |
tree | ccf5bbc7d7628e7e0954c6ce02b46ae46cb92b7d /src/lib/elementary/elm_widget.h | |
parent | 76088133dca88d89718791fc3caccc7ef694fa40 (diff) |
widget: Remove sub_obj arg to resize_object_set
This removes an argument that was false only for a single widget:
naviframe. Hopefully this logic is now simpler, even though it involves
a small hack within naviframe itself.
Ref T5363
Diffstat (limited to 'src/lib/elementary/elm_widget.h')
-rw-r--r-- | src/lib/elementary/elm_widget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_widget.h b/src/lib/elementary/elm_widget.h index bcfb5aed52..f653232c50 100644 --- a/src/lib/elementary/elm_widget.h +++ b/src/lib/elementary/elm_widget.h | |||
@@ -131,7 +131,7 @@ | |||
131 | * (priv->sub, "elm,action,click", "", _clicked_signal_cb, obj); | 131 | * (priv->sub, "elm,action,click", "", _clicked_signal_cb, obj); |
132 | * // set this sub object as the "resize object". widgets get 1 resize | 132 | * // set this sub object as the "resize object". widgets get 1 resize |
133 | * // object that is resized along with the object wrapper. | 133 | * // object that is resized along with the object wrapper. |
134 | * elm_widget_resize_object_set(obj, priv->sub, EINA_TRUE); | 134 | * elm_widget_resize_object_set(obj, priv->sub); |
135 | * } | 135 | * } |
136 | * | 136 | * |
137 | * static void | 137 | * static void |
@@ -645,7 +645,7 @@ EAPI void elm_widget_on_show_region_hook_set(Evas_Object *obj, void | |||
645 | EAPI Eina_Bool elm_widget_sub_object_parent_add(Evas_Object *sobj); | 645 | EAPI Eina_Bool elm_widget_sub_object_parent_add(Evas_Object *sobj); |
646 | EAPI Eina_Bool elm_widget_sub_object_add(Evas_Object *obj, Evas_Object *sobj); | 646 | EAPI Eina_Bool elm_widget_sub_object_add(Evas_Object *obj, Evas_Object *sobj); |
647 | EAPI Eina_Bool elm_widget_sub_object_del(Evas_Object *obj, Evas_Object *sobj); | 647 | EAPI Eina_Bool elm_widget_sub_object_del(Evas_Object *obj, Evas_Object *sobj); |
648 | EAPI void elm_widget_resize_object_set(Evas_Object *obj, Evas_Object *sobj, Eina_Bool sub_obj); | 648 | EAPI void elm_widget_resize_object_set(Evas_Object *obj, Evas_Object *sobj); |
649 | EAPI void elm_widget_hover_object_set(Evas_Object *obj, Evas_Object *sobj); | 649 | EAPI void elm_widget_hover_object_set(Evas_Object *obj, Evas_Object *sobj); |
650 | EAPI void elm_widget_signal_emit(Evas_Object *obj, const char *emission, const char *source); | 650 | EAPI void elm_widget_signal_emit(Evas_Object *obj, const char *emission, const char *source); |
651 | EAPI void elm_widget_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func, void *data); | 651 | EAPI void elm_widget_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func, void *data); |