diff --git a/legacy/ecore/doc/examples.dox b/legacy/ecore/doc/examples.dox index f1064fa4a3..469c36b342 100644 --- a/legacy/ecore/doc/examples.dox +++ b/legacy/ecore/doc/examples.dox @@ -1170,10 +1170,10 @@ * The main function does some setup that includes reading parameters from * the command line to change its behaviour and test different results. * These are: - * @li -t maximum number of threads to run at the same time. - * @li -p adds @c some_path to the list used by the feedback jobs. + * @li -t \ maximum number of threads to run at the same time. + * @li -p \ adds @c some_path to the list used by the feedback jobs. * This parameter can be used multiple times. - * @li -m the number of messages to process before the program is + * @li -m \ the number of messages to process before the program is * signalled to exit. * * Skipping some bits, we init Ecore and our application data. diff --git a/legacy/ecore/src/lib/ecore_con/Ecore_Con.h b/legacy/ecore/src/lib/ecore_con/Ecore_Con.h index d0ca6f6525..e6c65d44cb 100644 --- a/legacy/ecore/src/lib/ecore_con/Ecore_Con.h +++ b/legacy/ecore/src/lib/ecore_con/Ecore_Con.h @@ -1359,6 +1359,7 @@ typedef enum _Ecore_Con_Url_Http_Version /** * Change the HTTP version used for the request + * @param url_con Connection object through which the request will be sent. * @param version The version to be used * @return EINA_TRUE on success, EINA_FALSE on failure to change version * @since 1.2 diff --git a/legacy/ecore/src/lib/ecore_con/ecore_con_ssl.c b/legacy/ecore/src/lib/ecore_con/ecore_con_ssl.c index cd8b9c6b3e..28879962ff 100644 --- a/legacy/ecore/src/lib/ecore_con/ecore_con_ssl.c +++ b/legacy/ecore/src/lib/ecore_con/ecore_con_ssl.c @@ -717,6 +717,7 @@ ecore_con_ssl_server_cafile_add(Ecore_Con_Server *svr, * Use this function to add a SSL PEM private key * Simply specify the key file here to use it in the server object for connecting or listening. * If there is an error loading the key, an error will automatically be logged. + * @param svr The server object * @param key_file The path to the key file. * @return EINA_FALSE if the file cannot be loaded, * otherwise EINA_TRUE. diff --git a/legacy/ecore/src/lib/ecore_evas/Ecore_Evas.h b/legacy/ecore/src/lib/ecore_evas/Ecore_Evas.h index 84f5345c13..75bdfc3d1b 100644 --- a/legacy/ecore/src/lib/ecore_evas/Ecore_Evas.h +++ b/legacy/ecore/src/lib/ecore_evas/Ecore_Evas.h @@ -531,7 +531,7 @@ EAPI Eina_Bool ecore_evas_modal_get(const Ecore_Evas *ee); * @brief Set the "i demand attention" flag on a canvas window * * @param ee The Ecore_Evas - * @param demand_attention The flag state to set + * @param demand The flag state to set * * A window may demand attention now (eg you must enter a password before * continuing), and so it may flag a window with this. diff --git a/legacy/ecore/src/lib/ecore_x/xcb/ecore_xcb_damage.c b/legacy/ecore/src/lib/ecore_x/xcb/ecore_xcb_damage.c index bbab308faf..deb3b9cb49 100644 --- a/legacy/ecore/src/lib/ecore_x/xcb/ecore_xcb_damage.c +++ b/legacy/ecore/src/lib/ecore_x/xcb/ecore_xcb_damage.c @@ -129,7 +129,7 @@ ecore_x_damage_free(Ecore_X_Damage damage) * Synchronously modifies the regions in the following manner: * If @p repair is @c XCB_NONE: * 1) parts = damage - * 2) damage = + * 2) damage = \ * Otherwise: * 1) parts = damage INTERSECT repair * 2) damage = damage - parts