diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-08 11:48:31 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-08 13:25:58 +0900 |
commit | 9a2d4928f09ced3ea34d3bf643d9d52ce6a5f57c (patch) | |
tree | 367624ca751b9c736ba969b2e4c3830dbc2e65ee /src/tests/elementary | |
parent | db29ee1cd686f4d58f1a13eb8eb0177d5ddd8be8 (diff) | |
download | efl-9a2d4928f09ced3ea34d3bf643d9d52ce6a5f57c.tar.gz |
elm: Rename elm_layout to Efl.Ui.Layout
Some names have not been changed, hopefully making a distinction
between legacy APIs and internal code (elm_layout_blah) and valid EO
usages.
This means many internal functions are still elm_layout_ as their
sole purpose is to support the legacy API.
Ref T5315
Diffstat (limited to 'src/tests/elementary')
-rw-r--r-- | src/tests/elementary/elm_test_layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/elementary/elm_test_layout.c b/src/tests/elementary/elm_test_layout.c index 87004b52f8..52e5dbee23 100644 --- a/src/tests/elementary/elm_test_layout.c +++ b/src/tests/elementary/elm_test_layout.c @@ -32,7 +32,7 @@ START_TEST(elm_layout_swallows) elm_init(1, NULL); win = elm_win_add(NULL, "layout", ELM_WIN_BASIC); - ly = efl_add(ELM_LAYOUT_CLASS, win); + ly = efl_add(EFL_UI_LAYOUT_CLASS, win); snprintf(buf, sizeof(buf), "%s/objects/test.edj", ELM_TEST_DATA_DIR); elm_layout_file_set(ly, buf, "layout"); evas_object_show(ly); @@ -69,7 +69,7 @@ START_TEST(elm_layout_model_connect) elm_init(1, NULL); win = elm_win_add(NULL, "layout", ELM_WIN_BASIC); - ly = efl_add(ELM_LAYOUT_CLASS, win); + ly = efl_add(EFL_UI_LAYOUT_CLASS, win); snprintf(buf, sizeof(buf), "%s/objects/test.edj", ELM_TEST_DATA_DIR); elm_layout_file_set(ly, buf, "layout"); evas_object_show(ly); |