ecore_evas_extn: fix doxygen sample

Summary:
fix doxygen sample according to D690

@fix

Reviewers: raster

Reviewed By: raster

CC: seoz, cedric

Differential Revision: https://phab.enlightenment.org/D697
This commit is contained in:
wonguk.jeong 2014-04-04 12:16:39 +09:00 committed by Carsten Haitzler (Rasterman)
parent 0e1b52875d
commit e561d68bc4
1 changed files with 51 additions and 51 deletions

View File

@ -2421,18 +2421,18 @@ EAPI extern int ECORE_EVAS_EXTN_CLIENT_DEL; /**< this event is received when a p
* You can set up event handles for these events as follows:
*
* @code
* static void client_add_cb(void *data, int event, void *event_info)
* static Eina_Bool client_add_cb(void *data, int event, void *event_info)
* {
* Evas_Object *obj = event_info;
* printf("client added to image object %p\n", obj);
* evas_object_show(obj);
* Ecore_Evas *ee = event_info;
* printf("client is connected to external socket %p\n", ee);
* return ECORE_CALLBACK_PASS_ON;
* }
*
* static void client_del_cb(void *data, int event, void *event_info)
* static Eina_Bool client_del_cb(void *data, int event, void *event_info)
* {
* Evas_Object *obj = event_info;
* printf("client deleted from image object %p\n", obj);
* evas_object_hide(obj);
* Ecore_Evas *ee = event_info;
* printf("client is disconnected from external socket %p\n", ee);
* return ECORE_CALLBACK_PASS_ON;
* }
*
* void setup(void)