From: Xavi Artigas Date: Fri, 22 Feb 2019 16:42:31 +0000 (+0100) Subject: examples: fixes after Efl.Gfx.Hint rename X-Git-Tag: submit/tizen/20190308.115227~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5dd5626ad1cef9ec221f14a6a6e6fc1786bc3510;p=platform%2Fupstream%2Fefl.git examples: fixes after Efl.Gfx.Hint rename --- diff --git a/src/examples/elementary/efl_ui_relative_layout_example_02.c b/src/examples/elementary/efl_ui_relative_layout_example_02.c index 4a8d46a..db21b15 100644 --- a/src/examples/elementary/efl_ui_relative_layout_example_02.c +++ b/src/examples/elementary/efl_ui_relative_layout_example_02.c @@ -25,11 +25,11 @@ elm_main(int argc, char **argv) btn1 = efl_add(EFL_UI_BUTTON_CLASS, layout, efl_text_set(efl_added, "btn1"), - efl_gfx_size_hint_min_set(efl_added, EINA_SIZE2D(100, 100))); + efl_gfx_hint_size_min_set(efl_added, EINA_SIZE2D(100, 100))); btn2 = efl_add(EFL_UI_BUTTON_CLASS, layout, efl_text_set(efl_added, "btn2"), - efl_gfx_size_hint_min_set(efl_added, EINA_SIZE2D(0, 100))); + efl_gfx_hint_size_min_set(efl_added, EINA_SIZE2D(0, 100))); efl_ui_relative_layout_relation_right_set(layout, btn1, btn2, 0.0); efl_ui_relative_layout_relation_bottom_set(layout, btn1, btn2, 0.0);