summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-09-10 13:21:50 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-09-10 13:21:50 +0900
commitb656e82b09074ee867d427f50de23a413170d1e5 (patch)
treee67efce9b2ad161c7aa9b4f38dfc288f939b2447 /src
parent48b3c127f7c4e7ffc7dbf66013c3ec2812ae9a5f (diff)
downloadefl-b656e82b09074ee867d427f50de23a413170d1e5.tar.gz
efl ui layout - fix warning fro wrong type... its a list not a hash.
Diffstat (limited to 'src')
-rw-r--r--src/lib/elementary/elm_widget_layout.h2
1 files changed, 1 insertions, 1 deletions
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. */