cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f1ab136abc7bc1b0a075f8da369cd61ab71b3a3b

commit f1ab136abc7bc1b0a075f8da369cd61ab71b3a3b
Author: Jee-Yong Um <jc9...@samsung.com>
Date:   Tue Dec 20 16:06:20 2016 -0800

    doxygen: remove reference warnings.
    
    Reviewers: cedric, jpeg
    
    Differential Revision: https://phab.enlightenment.org/D4503
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/lib/ecore_buffer/Ecore_Buffer.h |  2 +-
 src/lib/eet/Eet.h                   |  4 ++--
 src/lib/eina/eina_matrix.h          | 13 +++++++------
 src/lib/eina/eina_rectangle.h       |  2 +-
 src/lib/eina/eina_thread.h          |  2 +-
 src/lib/eio/Eio_Legacy.h            |  3 ++-
 src/lib/evas/Evas_GL.h              | 14 ++++++--------
 7 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/src/lib/ecore_buffer/Ecore_Buffer.h 
b/src/lib/ecore_buffer/Ecore_Buffer.h
index 36c82da..74a9b3a 100644
--- a/src/lib/ecore_buffer/Ecore_Buffer.h
+++ b/src/lib/ecore_buffer/Ecore_Buffer.h
@@ -393,7 +393,7 @@ typedef enum _Ecore_Export_Type Ecore_Export_Type;
  */
 typedef unsigned int Ecore_Buffer_Format;
 /**
- * @typedef Ecore_Buffer_Pixmap
+ * @typedef Ecore_Pixmap
  * An Id of Pixmap.
  * @since 1.15
  */
diff --git a/src/lib/eet/Eet.h b/src/lib/eet/Eet.h
index 19ab574..f2ef50c 100644
--- a/src/lib/eet/Eet.h
+++ b/src/lib/eet/Eet.h
@@ -478,7 +478,7 @@ typedef enum _Eet_File_Mode
 } Eet_File_Mode; /**< Modes that a file can be opened. */
 
 /**
- * @enum _Eet_Image_Encoding
+ * @enum Eet_Image_Encoding
  * Specify lossy encoding for image
  * @since 1.10
  */
@@ -524,7 +524,7 @@ typedef struct _Eet_File Eet_File;
 typedef struct _Eet_Dictionary Eet_Dictionary;
 
 /**
- * @typedef Eet_Entries
+ * @typedef Eet_Entry
  * Eet files may contains multiple Entries per file, this handle describe 
them. You can get that handle from an iterator given by eet_list_entries().
  *
  * @see eet_list_entries()
diff --git a/src/lib/eina/eina_matrix.h b/src/lib/eina/eina_matrix.h
index 2f9ad21..e851d5c 100644
--- a/src/lib/eina/eina_matrix.h
+++ b/src/lib/eina/eina_matrix.h
@@ -40,7 +40,8 @@
  */
 
 /**
- * @typedef Matrix3 types
+ * @typedef Eina_Matrix_Type
+ * Matrix3 types
  */
 typedef enum _Eina_Matrix_Type
   {
@@ -368,7 +369,7 @@ EAPI void eina_matrix3_scale(Eina_Matrix3 *t, double sx, 
double sy);
 
 /**
  * Set the matrix values for a rotation
- * @param[in] m The matrix to set the rotation values
+ * @param[in] t The matrix to set the rotation values
  * @param[in] rad The radius to rotate the matrix
  *
  * @since 1.14
@@ -500,8 +501,8 @@ EAPI void eina_matrix3_copy(Eina_Matrix3 *dst, const 
Eina_Matrix3 *src);
  * @brief Multiply two matrix
  *
  * @param out The resulting matrix
- * @param a The first member of the multiplication
- * @param b The second member of the multiplication
+ * @param mat_a The first member of the multiplication
+ * @param mat_b The second member of the multiplication
  *
  * @since 1.17
  */
@@ -512,8 +513,8 @@ EAPI void eina_matrix3_multiply(Eina_Matrix3 *out, const 
Eina_Matrix3 *mat_a,
  * @brief Multiply two matrix
  *
  * @param out The resulting matrix
- * @param a The first member of the multiplication
- * @param b The second member of the multiplication
+ * @param mat_a The first member of the multiplication
+ * @param mat_b The second member of the multiplication
  *
  * @since 1.17
  */
diff --git a/src/lib/eina/eina_rectangle.h b/src/lib/eina/eina_rectangle.h
index fce0470..fcde85e 100644
--- a/src/lib/eina/eina_rectangle.h
+++ b/src/lib/eina/eina_rectangle.h
@@ -62,7 +62,7 @@ typedef struct _Eina_Rectangle
 typedef struct _Eina_Rectangle_Pool Eina_Rectangle_Pool;
 
 /**
- * @typedef Eina_Rectangle_Pool_Type
+ * @typedef Eina_Rectangle_Packing
  * Type for an Eina Pool based on packing algorithm.
  * @since 1.11
  */
diff --git a/src/lib/eina/eina_thread.h b/src/lib/eina/eina_thread.h
index d7a9ad3..067e69b 100644
--- a/src/lib/eina/eina_thread.h
+++ b/src/lib/eina/eina_thread.h
@@ -57,7 +57,7 @@ typedef uintptr_t Eina_Thread;
 typedef void *(*Eina_Thread_Cb)(void *data, Eina_Thread t);
 
 /**
- * @typedef Eina_Thead_Priority
+ * @typedef Eina_Thread_Priority
  * Type to enumerate different thread priorities
  */
 typedef enum _Eina_Thread_Priority
diff --git a/src/lib/eio/Eio_Legacy.h b/src/lib/eio/Eio_Legacy.h
index 833a214..571549b 100644
--- a/src/lib/eio/Eio_Legacy.h
+++ b/src/lib/eio/Eio_Legacy.h
@@ -39,7 +39,7 @@ extern "C" {
  *
  * The Eio library is a library that implements an API for asynchronous
  * input/output operation. Most operations are done in a separate thread
- * to prevent lock. See @ref Eio_Group. Some helper to work on data
+ * to prevent lock. See @ref Eio. Some helper to work on data
  * received in Eio callback are also provided see @ref Eio_Helper.
  * It is also possible to work asynchronously on Eina_File with @ref Eio_Map
  * or on Eet_File with @ref Eio_Eet. It comes with way to manipulate
@@ -360,6 +360,7 @@ EAPI Eio_File *eio_file_direct_stat(const char *path,
 
 /**
  * @defgroup Eio_Management Eio file management API.
+ * @ingroup Eio
  *
  * @brief A set of function to manage file asynchronously.
  *
diff --git a/src/lib/evas/Evas_GL.h b/src/lib/evas/Evas_GL.h
index e4ce2d1..8669c92 100644
--- a/src/lib/evas/Evas_GL.h
+++ b/src/lib/evas/Evas_GL.h
@@ -5041,8 +5041,7 @@ struct _Evas_GL_API
     * Evas GL will use the same EGLDisplay as used in the create function.
     */
    void         (*evasglDestroyImage) (EvasGLImage image);
-
-
+   /** @} */
 
    // ---------------------------------------------------------------------- //
    /* Evas_GL_API version 2: */
@@ -5347,7 +5346,7 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
    /* GL_QCOM_tiled_rendering */
    void         (*glStartTilingQCOM) (GLuint x, GLuint y, GLuint width, GLuint 
height, GLbitfield preserveMask);
    void         (*glEndTilingQCOM) (GLbitfield preserveMask);
-
+   /** @} */
 
    /*------- EvasGL / EGL-related functions -------*/
    /**
@@ -5453,8 +5452,6 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
    int          (*evasglWaitSync) (Evas_GL *evas_gl, EvasGLSync sync, int 
flags);
    /** @} */
 
-
-
    // ---------------------------------------------------------------------- //
    /* Evas_GL_API version 3: */
 
@@ -5481,6 +5478,7 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
     */
    Eina_Bool    (*evasglQueryWaylandBuffer) (Evas_GL *evas_gl, void *buffer, 
int attribute, int *value);
    /** @} */
+
    // ---------------------------------------------------------------------- //
    /**
     * @anchor gles3
@@ -5684,6 +5682,9 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
     */
 };
 
+/**
+ * @}
+ */
 
 #ifdef __cplusplus
 }
@@ -5693,6 +5694,3 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
 #define EAPI
 
 #endif
-/**
- * @}
- */

-- 


Reply via email to