From 2ddef61a6964de6ab0f4516582613d4e66f78454 Mon Sep 17 00:00:00 2001 From: "Jonas M. Gastal" Date: Mon, 5 Mar 2012 14:59:59 +0000 Subject: [PATCH] Ecore con style fix. SVN revision: 68726 --- legacy/ecore/src/lib/ecore_con/Ecore_Con.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_con/Ecore_Con.h b/legacy/ecore/src/lib/ecore_con/Ecore_Con.h index ee7896509e..0bf2b6f683 100644 --- a/legacy/ecore/src/lib/ecore_con/Ecore_Con.h +++ b/legacy/ecore/src/lib/ecore_con/Ecore_Con.h @@ -747,8 +747,8 @@ EAPI void ecore_con_socks_apply_always(Ecore_Con_Socks *ecs); * * Setting up a server is very simple: you just need to start it with * ecore_con_server_add() and setup some callbacks to the events - * #ECORE_CON_EVENT_CLIENT_ADD, #ECORE_CON_EVENT_CLIENT_DEL and - * #ECORE_CON_EVENT_CLIENT_DATA, that will be called when a client is + * @ref ECORE_CON_EVENT_CLIENT_ADD, @ref ECORE_CON_EVENT_CLIENT_DEL and + * @ref ECORE_CON_EVENT_CLIENT_DATA, that will be called when a client is * communicating with the server: * * @code @@ -870,8 +870,8 @@ EAPI Ecore_Con_Server *ecore_con_server_add(Ecore_Con_Type type, * * However, even if this call returns a valid @ref Ecore_Con_Server, the * connection will only be successfully completed if an event of type - * #ECORE_CON_EVENT_SERVER_ADD is received. If it fails to complete, an - * #ECORE_CON_EVENT_SERVER_DEL will be received. + * @ref ECORE_CON_EVENT_SERVER_ADD is received. If it fails to complete, an + * @ref ECORE_CON_EVENT_SERVER_DEL will be received. * * The @p data parameter can be fetched later using ecore_con_server_data_get() * or changed with ecore_con_server_data_set().