From 3bebbb32d566aeb546ea2516d3a88fdbb0c78925 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Tue, 14 Apr 2020 16:53:25 +0200 Subject: [PATCH] doxygen docs: Fix misplaced Evas_Font group tags Putting things in the wrong group really messes up the organization. --- src/lib/evas/Evas_Common.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/lib/evas/Evas_Common.h b/src/lib/evas/Evas_Common.h index 188a2ed..4e3ac49 100644 --- a/src/lib/evas/Evas_Common.h +++ b/src/lib/evas/Evas_Common.h @@ -3338,12 +3338,13 @@ typedef Eo Evas_Out; * @defgroup Evas_Font_Path_Group Font Path Functions * * Functions that edit the paths being used to load fonts. + * + * @{ */ /** * Removes all font paths loaded into memory by evas_font_path_app_* APIs * for the application. - * @ingroup Evas_Font_Path_Group * @since 1.9 */ EAPI void evas_font_path_global_clear(void); @@ -3351,7 +3352,6 @@ EAPI void evas_font_path_global_clear(void); /** * Appends a font path to the list of font paths used by the application. * @param path The new font path. - * @ingroup Evas_Font_Path_Group * @since 1.9 */ EAPI void evas_font_path_global_append(const char *path) EINA_ARG_NONNULL(1); @@ -3359,7 +3359,6 @@ EAPI void evas_font_path_global_append(const char *path) EINA /** * Prepends a font path to the list of font paths used by the application. * @param path The new font path. - * @ingroup Evas_Font_Path_Group * @since 1.9 */ EAPI void evas_font_path_global_prepend(const char *path) EINA_ARG_NONNULL(1); @@ -3367,20 +3366,26 @@ EAPI void evas_font_path_global_prepend(const char *path) EIN /** * Retrieves the list of font paths used by the application. * @return The list of font paths used. - * @ingroup Evas_Font_Path_Group * @since 1.9 */ EAPI const Eina_List *evas_font_path_global_list(void) EINA_WARN_UNUSED_RESULT; /** + * @} + */ + +/** * Reinitialize FontConfig. If FontConfig has to be reinitialized * according to changes of system environments (e.g. Changing font config files), it will be useful. * - * @ingroup Evas_Font_Path_Group * @since 1.14 */ EAPI void evas_font_reinit(void); +/** + * @} + */ + // The below type are necessary for legacy API and need to be manually kept in sync with .eo file. #ifndef _EFL_INPUT_DEVICE_EO_CLASS_TYPE #define _EFL_INPUT_DEVICE_EO_CLASS_TYPE @@ -3413,7 +3418,3 @@ typedef Eo Efl_Gfx_Entity; #endif #endif - -/** - * @} - */ -- 2.7.4