diff options
author | tasn <tasn> | 2012-06-10 14:56:20 +0000 |
---|---|---|
committer | tasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33> | 2012-06-10 14:56:20 +0000 |
commit | 269168dbf18716f57881085cfb55e4041fb934df (patch) | |
tree | 20891bdf925dfb3f46c24273a103df9be3fbb873 /src/examples | |
parent | 15e6e430eb31589fe4c41c99a5eaf7fb54b36b21 (diff) | |
download | eobj-269168dbf18716f57881085cfb55e4041fb934df.tar.gz eobj-269168dbf18716f57881085cfb55e4041fb934df.tar.bz2 eobj-269168dbf18716f57881085cfb55e4041fb934df.zip |
Eo composite: Reordered parameters and improved docs.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eobj@71906 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33
Diffstat (limited to 'src/examples')
-rw-r--r-- | src/examples/evas/elw_boxedbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/evas/elw_boxedbutton.c b/src/examples/evas/elw_boxedbutton.c index 361a8d3..825fcb9 100644 --- a/src/examples/evas/elw_boxedbutton.c +++ b/src/examples/evas/elw_boxedbutton.c @@ -21,7 +21,7 @@ _constructor(Eo *obj, void *class_data EINA_UNUSED, va_list *list EINA_UNUSED) eo_do_super(obj, eo_constructor()); Eo *bt = eo_add(ELW_BUTTON_CLASS, obj); - eo_composite_object_attach(obj, bt); + eo_composite_object_attach(bt, obj); eo_do(bt, eo_event_callback_forwarder_add(EV_CLICKED, obj)); eo_do(bt, evas_obj_visibility_set(EINA_TRUE)); |