raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b656e82b09074ee867d427f50de23a413170d1e5

commit b656e82b09074ee867d427f50de23a413170d1e5
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Sun Sep 10 13:21:50 2017 +0900

    efl ui layout - fix warning fro wrong type... its a list not a hash.
---
 src/lib/elementary/elm_widget_layout.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_widget_layout.h 
b/src/lib/elementary/elm_widget_layout.h
index 5f2daa25bd..ab4058fec7 100644
--- a/src/lib/elementary/elm_widget_layout.h
+++ b/src/lib/elementary/elm_widget_layout.h
@@ -53,7 +53,7 @@ typedef struct _Elm_Layout_Smart_Data
    Eina_List            *subs; /**< List of Elm_Layout_Sub_Object_Data 
structs, to hold the actual sub objects such as text, content and the children 
of box and table. */
    Eina_List            *edje_signals; /**< The list of edje signal callbacks. 
*/
    Eina_List            *parts_cursors; /**< The list of cursor names of 
layout parts. This is a list of Elm_Layout_Sub_Object_Cursor struct. */
-   Eina_Hash            *prop_connect; /**< The hash of properties connected 
to layout parts. */
+   Eina_List            *prop_connect; /**< The hash of properties connected 
to layout parts. */
    Eina_Hash            *factories; /**< The hash with parts connected to 
factories. */
    Efl_Model            *model; /**< The model */
    const char           *klass; /**< 1st identifier of an edje object group 
which is used in theme_set. klass and group are used together. */

-- 


Reply via email to