summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Guyomarc'h <jean.guyomarch@gmail.com>2015-11-05 16:12:44 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2015-11-05 16:12:44 +0900
commit44cb457604bb324e448aeab24799498ea3b42d9f (patch)
tree485cd57ccddab925308bc0d9c486f920202c7d05
parent4ccb501a346133fbcc56238e107fbf55bf350433 (diff)
downloadelementary-44cb457604bb324e448aeab24799498ea3b42d9f.tar.gz
elm_segment_control: fix invalid parameter
Summary: Eo complained about an invalid type 'Edje_Object' passed to elm_widget_sub_object_add(). It is the segment control itself that should be the subject of the call to this function. @fix Test Plan: elementary_test: no more Eo errors Reviewers: cedric, stefan_schmidt Differential Revision: https://phab.enlightenment.org/D3277
-rw-r--r--src/lib/elm_segment_control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_segment_control.c b/src/lib/elm_segment_control.c
index 53319e454..169f32bfd 100644
--- a/src/lib/elm_segment_control.c
+++ b/src/lib/elm_segment_control.c
@@ -568,7 +568,7 @@ _item_new(Evas_Object *obj,
edje_object_part_text_escaped_set(VIEW(it), "elm.text", label);
it->icon = icon;
- if (it->icon) elm_widget_sub_object_add(VIEW(it), it->icon);
+ if (it->icon) elm_widget_sub_object_add(obj, it->icon);
evas_object_event_callback_add
(VIEW(it), EVAS_CALLBACK_MOUSE_DOWN, _on_mouse_down, it);
evas_object_event_callback_add