diff options
author | Tom Hacohen <tom@stosb.com> | 2016-08-15 14:44:41 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-08-15 15:07:42 +0100 |
commit | e65aae994e72c1d3f8ac6b5360d3772f177b77ef (patch) | |
tree | 7ecaf136e45470635889191aded2b47057720a98 /src/lib/elementary/elm_widget_list.h | |
parent | 35abb3c34d10a4826c98055fb85ecf93915e5ea8 (diff) |
Eo: Finish the renaming of Eo to the EFL.
This renames all the rest of the API to the EFL namespace except for
Eo_Event that will follow soon.
Obviously breaks both API and ABI.
Diffstat (limited to 'src/lib/elementary/elm_widget_list.h')
-rw-r--r-- | src/lib/elementary/elm_widget_list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/elm_widget_list.h b/src/lib/elementary/elm_widget_list.h index 5feaa4e..aeba701 100644 --- a/src/lib/elementary/elm_widget_list.h +++ b/src/lib/elementary/elm_widget_list.h | |||
@@ -92,7 +92,7 @@ struct _Elm_List_Item_Data | |||
92 | */ | 92 | */ |
93 | 93 | ||
94 | #define ELM_LIST_DATA_GET(o, sd) \ | 94 | #define ELM_LIST_DATA_GET(o, sd) \ |
95 | Elm_List_Data * sd = eo_data_scope_get(o, ELM_LIST_CLASS) | 95 | Elm_List_Data * sd = efl_data_scope_get(o, ELM_LIST_CLASS) |
96 | 96 | ||
97 | #define ELM_LIST_DATA_GET_FROM_ITEM(it, sd) \ | 97 | #define ELM_LIST_DATA_GET_FROM_ITEM(it, sd) \ |
98 | ELM_LIST_DATA_GET(WIDGET(it), sd) | 98 | ELM_LIST_DATA_GET(WIDGET(it), sd) |
@@ -116,7 +116,7 @@ struct _Elm_List_Item_Data | |||
116 | } | 116 | } |
117 | 117 | ||
118 | #define ELM_LIST_CHECK(obj) \ | 118 | #define ELM_LIST_CHECK(obj) \ |
119 | if (EINA_UNLIKELY(!eo_isa((obj), ELM_LIST_CLASS))) \ | 119 | if (EINA_UNLIKELY(!efl_isa((obj), ELM_LIST_CLASS))) \ |
120 | return | 120 | return |
121 | 121 | ||
122 | #define ELM_LIST_ITEM_CHECK(it) \ | 122 | #define ELM_LIST_ITEM_CHECK(it) \ |
@@ -138,6 +138,6 @@ struct _Elm_List_Item_Data | |||
138 | } | 138 | } |
139 | 139 | ||
140 | #define ELM_LIST_ITEM_DATA_GET(o, sd) \ | 140 | #define ELM_LIST_ITEM_DATA_GET(o, sd) \ |
141 | Elm_List_Item_Data* sd = eo_data_scope_get(o, ELM_LIST_ITEM_CLASS) | 141 | Elm_List_Item_Data* sd = efl_data_scope_get(o, ELM_LIST_ITEM_CLASS) |
142 | 142 | ||
143 | #endif | 143 | #endif |