diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2019-08-15 20:45:09 -0700 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2019-08-21 11:18:34 -0700 |
commit | 0248d504b34f5f4324102ae406b848c2c8fe28c4 (patch) | |
tree | a022986ba9a4b0f17bcb41ae4fff04ca52413762 /src/lib/efl/Efl.h | |
parent | b8bf5b31e847194446838d32565a4c654823024b (diff) |
elementary: switch Efl.Ui.Factory API to a batch API and update all class using it.
Reviewed-by: Lauro Neto <Lauro Moura <lauromoura@expertisesolutions.com.br>>
Differential Revision: https://phab.enlightenment.org/D9579
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/Efl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/efl/Efl.h b/src/lib/efl/Efl.h index a75b683b52..e1cfe4156e 100644 --- a/src/lib/efl/Efl.h +++ b/src/lib/efl/Efl.h | |||
@@ -211,13 +211,13 @@ EAPI Efl_Object *efl_part(const Eo *obj, const char *name); | |||
211 | * @param[in] parent The parent of the newly created item | 211 | * @param[in] parent The parent of the newly created item |
212 | * @return A future that will resolve with the newly created item. | 212 | * @return A future that will resolve with the newly created item. |
213 | * | 213 | * |
214 | * @since 1.22 | 214 | * @since 1.23 |
215 | * @note This exists as we always want to trigger the event once all the logic | 215 | * @note This exists as we always want to trigger the event once all the logic |
216 | * of every factory in the chain has done what it planned to do. Basically we | 216 | * of every factory in the chain has done what it planned to do. Basically we |
217 | * want the inverse of inheritance call like efl_super. So we do setup the future | 217 | * want the inverse of inheritance call like efl_super. So we do setup the future |
218 | * in this way. | 218 | * in this way. |
219 | */ | 219 | */ |
220 | EAPI Eina_Future *efl_ui_view_factory_create_with_event(Efl_Ui_Factory *factory, Efl_Model *model, Efl_Gfx_Entity *parent); | 220 | EAPI Eina_Future *efl_ui_view_factory_create_with_event(Efl_Ui_Factory *factory, Eina_Iterator *models, Efl_Gfx_Entity *parent); |
221 | 221 | ||
222 | #else | 222 | #else |
223 | 223 | ||