fix warning related to argument in generating doxygen
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 7 Jan 2014 02:27:15 +0000 (11:27 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 7 Jan 2014 02:27:15 +0000 (11:27 +0900)
src/lib/ecore/ecore_job.c
src/lib/ecore_audio/ecore_audio_obj_in.h
src/lib/edje/Edje_Common.h
src/lib/edje/Edje_Eo.h
src/lib/eina/eina_inline_rectangle.x
src/lib/eina/eina_log.h
src/lib/eio/eio_inline_helper.x
src/lib/evas/Evas_Common.h
src/lib/evas/Evas_Eo.h
src/lib/evas/Evas_Legacy.h

index 8e149fe..ce86bbd 100644 (file)
@@ -114,7 +114,7 @@ _constructor(Eo *obj, void *_pd EINA_UNUSED, va_list *list EINA_UNUSED)
 
 /**
  * Delete a queued job that has not yet been executed.
- * @param   job  Handle of the job to delete.
+ * @param   obj  Handle of the job to delete.
  * @return  The data pointer that was to be passed to the job.
  */
 EAPI void *
index b0b26ea..e9e49ff 100644 (file)
@@ -165,7 +165,7 @@ enum Ecore_Audio_Obj_In_Sub_Ids
  *
  * @see ecore_audio_obj_in_looped_set
  *
- * @param[out] looped EINA_TRUE if the input is looped, EINA_FALSE otherwise
+ * @param[out] ret EINA_TRUE if the input is looped, EINA_FALSE otherwise
  */
 #define ecore_audio_obj_in_looped_get(ret) ECORE_AUDIO_OBJ_IN_ID(ECORE_AUDIO_OBJ_IN_SUB_ID_LOOPED_GET), EO_TYPECHECK(Eina_Bool *, ret)
 
index 01c66ac..a2dbf13 100644 (file)
@@ -120,7 +120,7 @@ EAPI void           edje_fontset_append_set         (const char *fonts);
 
 /**
  * Get data from the file level data block of an edje mapped file
- * @param file The mapped edje file
+ * @param f The mapped edje file
  * @param key The data key
  * @return The string value of the data or NULL if no key is found.
  * Must be freed by the user when no longer needed.
@@ -1577,7 +1577,7 @@ typedef enum _Edje_Load_Error
 
 /**
  * Get a list of groups in an edje mapped file
- * @param file The mapped file
+ * @param f The mapped file
  *
  * @return The Eina_List of group names (char *)
  *
@@ -1596,7 +1596,7 @@ EAPI void              edje_mmap_collection_list_free(Eina_List *lst);
 
 /**
  * Determine whether a group matching glob exists in an edje mapped file.
- * @param file The mapped file
+ * @param f The mapped file
  * @param glob A glob to match on
  *
  * @return 1 if a match is found, 0 otherwise
index a10504b..f682fb2 100644 (file)
@@ -307,7 +307,6 @@ enum
  *
  * @param[in] part
  * @param[in] variation
- * @param[out] ret
  *
  * @see edje_object_part_text_input_panel_variation_get
  */
@@ -662,7 +661,6 @@ enum
  *
  * @param[in] file in
  * @param[in] group in
- * @param[in] nested in
  * @param[out] ret out
  *
  * @see edje_object_file_set
@@ -675,7 +673,6 @@ enum
  *
  * @param[in] file in
  * @param[in] group in
- * @param[in] nested in
  * @param[out] ret out
  *
  * @see edje_object_file_set
index 42a87f8..d89d7f1 100644 (file)
@@ -323,7 +323,7 @@ eina_rectangle_height_cut(Eina_Rectangle *thiz, Eina_Rectangle *slice, Eina_Rect
  * @brief Subtract two rectangles.
  *
  * @param thiz The minuend rectangle
- * @param src The subtrahend rectangle
+ * @param other The subtrahend rectangle
  *
  * This function subtract two rectangles. The difference is stored on @p out
  * There will be at most four differences, use eina_rectangle_is_valid to
index a54b67b..feb1b2e 100644 (file)
@@ -950,7 +950,7 @@ extern EAPI const char *_eina_log_state_shutdown;
 /**
  * @brief Start or stop the timing of a phase.
  *
- * @param d The domain.
+ * @param domain The domain.
  * @param state State indicating if we are starting or stopping a phase.
  * @param phase The name of the phase to be used in the log.
  *
index af49646..7672498 100644 (file)
  */
 
 /**
- * @brief Return last acces time to a file
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @brief Return last access time to a file
+ * @param st The stat buffer as given by eio_file_stat callback.
  * @return last access time.
  *
- * This function return the st_atime field, last acces time, as double like all EFL time call.
+ * This function return the st_atime field, last access time, as double like all EFL time call.
  */
 static inline double
 eio_file_atime(const Eina_Stat *st)
@@ -44,7 +44,7 @@ eio_file_atime(const Eina_Stat *st)
 
 /**
  * @brief Return last modification time of a file
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
  * @return last modification time.
  *
  * This function return the st_mtime field, last modification time, as double like all EFL time call.
@@ -58,7 +58,7 @@ eio_file_mtime(const Eina_Stat *st)
 
 /**
  * @brief Return file length.
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
  * @return the length of a file.
  *
  * This function is just an accessor to st_size and return the file length.
@@ -72,7 +72,7 @@ eio_file_size(const Eina_Stat *st)
 
 /**
  * @brief Return if path is a directory.
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
  * @return EINA_TRUE if the path is a directory.
  *
  * This function tell you if the stated path is a directory or not.
@@ -86,7 +86,7 @@ eio_file_is_dir(const Eina_Stat *st)
 
 /**
  * @brief Return if path is a length.
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
  * @return EINA_TRUE if the path is a length.
  *
  * This function tell you if the stated path is a length or not.
index 5c07e6d..0407786 100644 (file)
@@ -3587,7 +3587,6 @@ EAPI char                                    *evas_textblock_cursor_content_get(
  * @param[out] cy2 the y of the lower cursor
  * @param[out] cw2 the width of the lower cursor
  * @param[out] ch2 the height of the lower cursor
- * @param[in] dir the direction of the cursor, can be NULL.
  * @param[in] ctype the type of the cursor.
  * @return @c EINA_TRUE for split cursor, @c EINA_FALSE otherwise
  * @since 1.8
index 02cc416..186393a 100644 (file)
@@ -3089,7 +3089,7 @@ enum
  * Retrieves an iterator of the member objects of a given Evas smart
  * object
  *
- * @param[out] iterator out
+ * @param[out] it out
  *
  * @see evas_object_smart_iterator_new
  * @see evas_object_smart_members_get
@@ -5251,7 +5251,7 @@ enum
  * @since 1.8
  * Return a list of objects currently clipped by @p obj.
  *
- * @param[out] clipees out
+ * @param[out] clipees_has out
  *
  * @see evas_object_clipees_has
  */
@@ -5663,7 +5663,7 @@ enum
  * Set the source mmaped file from where an image object must fetch the real
  * image data (it may be any Eina_File).
  *
- * @param[in] file in
+ * @param[in] f in
  * @param[in] key in
  *
  * @see evas_obj_image_file_set
@@ -5769,7 +5769,7 @@ enum
  *
  * Apply the source object's clip to the proxy
  *
- * @param[in] clip in
+ * @param[in] source_clip in
  *
  * @see evas_object_image_source_clip_set
  */
@@ -5781,7 +5781,7 @@ enum
  *
  * Get the state of the source clip
  *
- * @param[out] source clip out
+ * @param[out] source_clip out
  *
  * @see evas_object_image_source_clip_get
  */
index 3f4bdf7..7aa76a2 100644 (file)
@@ -1288,7 +1288,7 @@ EAPI void evas_event_refeed_event(Evas *e, void *event_copy, Evas_Callback_Type
  * Call eina_list_free on the returned list after usage.
  *
  */
-EAPI Eina_List *evas_tree_objects_at_xy_get(Evas *eo_e, Evas_Object *stop, int x, int y) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
+EAPI Eina_List *evas_tree_objects_at_xy_get(Evas *e, Evas_Object *stop, int x, int y) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
 
 /**
  * @}