diff options
author | Cedric Bail <cedric@osg.samsung.com> | 2018-03-21 18:18:36 -0700 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2018-05-01 10:39:01 -0700 |
commit | e22e433d3849b44c7b2a2c5d58a7105993155ede (patch) | |
tree | 3ac57687cc687717cbce68ca720e18ef44fe34e8 | |
parent | 700bdb4dcc1325f898dfa92f659cb6447dc719e4 (diff) |
efl: Efl_Model can decide to optionnaly provide a child if it has it at hand.
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/Efl_Model_Common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/efl/Efl_Model_Common.h b/src/lib/efl/Efl_Model_Common.h index 7a064f0dff..789ea36e38 100644 --- a/src/lib/efl/Efl_Model_Common.h +++ b/src/lib/efl/Efl_Model_Common.h | |||
@@ -27,6 +27,12 @@ struct _Efl_Model_Children_Event | |||
27 | * positions through listings. | 27 | * positions through listings. |
28 | */ | 28 | */ |
29 | unsigned int index; | 29 | unsigned int index; |
30 | /** | ||
31 | * If an object has been build for this index and | ||
32 | * is currently tracked by the parent, it wild be | ||
33 | * available here. | ||
34 | */ | ||
35 | Eo *child; | ||
30 | }; | 36 | }; |
31 | 37 | ||
32 | /** | 38 | /** |