diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2018-04-11 10:38:21 -0700 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2018-05-24 16:02:17 -0700 |
commit | ccb5642eb9c122deac271da5f8b1353f46d73160 (patch) | |
tree | 9a0a93692425677f4853a6f1b8dadd6ee430c5ec /src/bin/elementary/test_ui_slider_interval.c | |
parent | 36f8a70041a8a16249a07d5b7131d57a8a6ea95b (diff) |
Revert "efl_add_ref - fis to use efl_add properly with a parent."
This reverts commit 2fb5cc3ad09f6aaf82b5d1131ac5ed22ed848bd4.
Most of this change where wrong as they didn't affect the destruction
of the object. efl_add_ref allow for manual handling of the lifecycle
of the object and make sure it is still alive during destructor. efl_add
will not allow you to access an object after invalidate also efl.parent.get
will always return NULL once the object is invalidated.
Differential Revision: https://phab.enlightenment.org/D6062
Diffstat (limited to 'src/bin/elementary/test_ui_slider_interval.c')
-rw-r--r-- | src/bin/elementary/test_ui_slider_interval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/elementary/test_ui_slider_interval.c b/src/bin/elementary/test_ui_slider_interval.c index bad8fca..3973b3d 100644 --- a/src/bin/elementary/test_ui_slider_interval.c +++ b/src/bin/elementary/test_ui_slider_interval.c | |||
@@ -32,7 +32,7 @@ test_slider_interval(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void | |||
32 | Eo *win, *bx, *hbx; | 32 | Eo *win, *bx, *hbx; |
33 | double step; | 33 | double step; |
34 | 34 | ||
35 | win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get(), | 35 | win = efl_add_ref(EFL_UI_WIN_CLASS, NULL, |
36 | efl_ui_win_type_set(efl_added, EFL_UI_WIN_BASIC), | 36 | efl_ui_win_type_set(efl_added, EFL_UI_WIN_BASIC), |
37 | efl_text_set(efl_added, "Efl.Ui.Slider_Interval"), | 37 | efl_text_set(efl_added, "Efl.Ui.Slider_Interval"), |
38 | efl_ui_win_autodel_set(efl_added, EINA_TRUE)); | 38 | efl_ui_win_autodel_set(efl_added, EINA_TRUE)); |