diff --git a/src/examples/elementary/bg_cxx_example_02.cc b/src/examples/elementary/bg_cxx_example_02.cc index 96dd491f97..5d07172b77 100644 --- a/src/examples/elementary/bg_cxx_example_02.cc +++ b/src/examples/elementary/bg_cxx_example_02.cc @@ -29,7 +29,7 @@ efl_main(void *data EINA_UNUSED, const Efl_Event *ev) else path = "performance/background.png"; - efl::ui::Bg bg(instantiate, win); + efl::ui::Bg_Widget bg(instantiate, win); bg.scale_type_set(EFL_IMAGE_SCALE_TYPE_FILL); bg.file_set(path, nullptr); win.content_set(bg); diff --git a/src/examples/elementary/table_cxx_example_01.cc b/src/examples/elementary/table_cxx_example_01.cc index 883eef07ab..a76d8d7ea0 100644 --- a/src/examples/elementary/table_cxx_example_01.cc +++ b/src/examples/elementary/table_cxx_example_01.cc @@ -13,7 +13,7 @@ efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED) win.text_set("Table example"); win.autohide_set(true); - efl::ui::Grid table(instantiate, win); + efl::ui::Table table(instantiate, win); win.content_set(table); table.pack_padding_set(5, 5, true); // FIXME diff --git a/src/examples/elementary/table_cxx_example_02.cc b/src/examples/elementary/table_cxx_example_02.cc index 71b9da2ab9..986cefc2e3 100644 --- a/src/examples/elementary/table_cxx_example_02.cc +++ b/src/examples/elementary/table_cxx_example_02.cc @@ -14,7 +14,7 @@ efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED) win.text_set("Table example"); win.autohide_set(true); - efl::ui::Grid table(instantiate, win); + efl::ui::Table table(instantiate, win); win.content_set(table); table.pack_padding_set(5, 5, true);