diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2018-12-07 11:26:54 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2018-12-07 11:47:21 +0100 |
commit | 4d6f20d714ea083471be163f67af518eced4028c (patch) | |
tree | 25574de63f6c0d2742859530ca202115534dc978 /src/lib/efl/interfaces/efl_ui_factory.eo | |
parent | 89683f49cab7d55e8184907335eb1360a156a49d (diff) |
elementary: make Efl.Ui.Factory.create asynchronous.
Reviewers: felipealmeida, SanghyeonLee, vitor.sousa, bu5hm4n, segfaultxavi
Reviewed By: felipealmeida, vitor.sousa, segfaultxavi
Subscribers: segfaultxavi, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T7472
Differential Revision: https://phab.enlightenment.org/D7332
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_ui_factory.eo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_factory.eo b/src/lib/efl/interfaces/efl_ui_factory.eo index 4765f3beca..adbd93bbd1 100644 --- a/src/lib/efl/interfaces/efl_ui_factory.eo +++ b/src/lib/efl/interfaces/efl_ui_factory.eo | |||
@@ -8,7 +8,7 @@ interface Efl.Ui.Factory (Efl.Ui.Model.Connect) | |||
8 | model: Efl.Model; [[Efl model]] | 8 | model: Efl.Model; [[Efl model]] |
9 | parent: Efl.Gfx.Entity; [[Efl canvas]] | 9 | parent: Efl.Gfx.Entity; [[Efl canvas]] |
10 | } | 10 | } |
11 | return: Efl.Gfx.Entity; [[Created UI object]] | 11 | return: future<Efl.Gfx.Entity>; [[Created UI object]] |
12 | } | 12 | } |
13 | release { | 13 | release { |
14 | [[Release a UI object and disconnect from models.]] | 14 | [[Release a UI object and disconnect from models.]] |