There are a lot of small things to fix in the evas doc. Here is a first
batch. Fixes are trivial and obvious. Just a question about the first
hunk, I removed the <tdb> that replaced valid email for companies
because it makes doxygen complain about the unknown tag and, well, it
doesn't give any information either. Was there an explanation about
adding this ?

Joined is the patch along with the doc build log diff.

-- 
Jérôme Pinot
http://ngc891.blogdns.net/
Index: evas/src/lib/Evas.h
===================================================================
--- evas/src/lib/Evas.h (revision 69726)
+++ evas/src/lib/Evas.h (working copy)
@@ -292,8 +292,8 @@
 @author Mathieu Taillefumier <mathieu.taillefumier@@free.fr>
 @author Iván Briano <ivan@@profusion.mobi>
 @author Gustavo Lima Chaves <glima@@profusion.mobi>
-@author Samsung Electronics <tbd>
-@author Samsung SAIT <tbd>
+@author Samsung Electronics
+@author Samsung SAIT
 @author Sung W. Park <sungwoo@@gmail.com>
 @author Jiyoun Park <jy0703.park@@samsung.com>
 @author Myoungwoon Roy Kim(roy_kim) <myoungwoon.kim@@samsung.com> 
<myoungwoon@@gmail.com>
@@ -1497,7 +1497,7 @@
  *        evas_render_updates_free().
  *
  * This function forces an immediate renderization update of the given
- * canvas @e.
+ * canvas @p e.
  *
  * @note This is a <b>very low level function</b>, which most of
  * Evas' users wouldn't care about. One would use it, for example, to
@@ -3252,7 +3252,7 @@
  * @see evas_object_unref()
  * @see evas_object_del()
  *
- * @note This is a <b>very simple<b> reference counting mechanism! For
+ * @note This is a <b>very simple</b> reference counting mechanism! For
  * instance, Evas is not ready to check for pending references on a
  * canvas deletion, or things like that. This is useful on scenarios
  * where, inside a code block, callbacks exist which would possibly
@@ -3487,7 +3487,7 @@
  * evas_object_show() and evas_object_hide().
  *
  * @note The value returned isn't, by any means, influenced by
- * clippers covering @obj, it being out of its canvas' viewport or
+ * clippers covering @p obj, it being out of its canvas' viewport or
  * stacked below other object.
  *
  * @see evas_object_show()
@@ -3740,9 +3740,9 @@
  * @image rtf evas-callbacks.png
  * @image latex evas-callbacks.eps
  *
- * Thees events have their values in the #Evas_Callback_Type
- * enumeration, which has also ones happening on the canvas level (se
- * #Evas_Canvas_Events).
+ * These events have their values in the #Evas_Callback_Type
+ * enumeration, which has also ones happening on the canvas level (see
+ * #Evas_Canvas_Events ).
  *
  * Examples on this group of functions can be found @ref
  * Example_Evas_Stacking "here" and @ref Example_Evas_Events "here".
@@ -4093,7 +4093,7 @@
  * Determine whether an object is set to repeat events.
  *
  * @param obj the given Evas object pointer
- * @retrieve whether @p obj is set to repeat events (@c EINA_TRUE)
+ * @return whether @p obj is set to repeat events (@c EINA_TRUE)
  * or not (@c EINA_FALSE)
  *
  * @see evas_object_repeat_events_set() for an example
@@ -4145,7 +4145,7 @@
  * Set whether an Evas object is to freeze (discard) events.
  *
  * @param obj the Evas object to operate on
- * @param pass whether @p obj is to freeze events (@c EINA_TRUE) or not
+ * @param freeze pass whether @p obj is to freeze events (@c EINA_TRUE) or not
  * (@c EINA_FALSE)
  *
  * If @p freeze is @c EINA_TRUE, it will make events on @p obj to be @b
@@ -5630,7 +5630,7 @@
  * Sets whether or not the given Evas object is to be drawn anti-aliased.
  *
  * @param   obj The given Evas object.
- * @param   anti_alias 1 if the object is to be anti_aliased, 0 otherwise.
+ * @param   antialias 1 if the object is to be anti_aliased, 0 otherwise.
  * @ingroup Evas_Object_Group_Extras
  */
 EAPI void                      evas_object_anti_alias_set       (Evas_Object 
*obj, Eina_Bool antialias) EINA_ARG_NONNULL(1);
@@ -5681,7 +5681,7 @@
 /**
  * Sets the render_op to be used for rendering the Evas object.
  * @param   obj The given Evas object.
- * @param   render_op one of the Evas_Render_Op values.
+ * @param   op one of the Evas_Render_Op values.
  * @ingroup Evas_Object_Group_Extras
  */
 EAPI void                      evas_object_render_op_set        (Evas_Object 
*obj, Evas_Render_Op op) EINA_ARG_NONNULL(1);
@@ -5759,7 +5759,7 @@
  * Get the "static clipper" hint flag for a given Evas object.
  *
  * @param obj The given object.
- * @returrn @c EINA_TRUE if it's set as a static clipper, @c
+ * @return @c EINA_TRUE if it's set as a static clipper, @c
  * EINA_FALSE otherwise
  *
  * @see evas_object_static_clip_set() for more details
@@ -5962,7 +5962,7 @@
    EAPI Eina_List        *evas_objects_in_rectangle_get     (const Evas *e, 
Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, Eina_Bool 
include_pass_events_objects, Eina_Bool include_hidden_objects) 
EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
 
 /**
- * Get the lowest (stacked) Evas object on the canvas @p
+ * Get the lowest (stacked) Evas object on the canvas @p e.
  *
  * @param e a valid canvas pointer
  * @return a pointer to the lowest object on it, if any, or @c NULL,
@@ -5983,7 +5983,7 @@
 EAPI Evas_Object      *evas_object_bottom_get            (const Evas *e) 
EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
 
 /**
- * Get the highest (stacked) Evas object on the canvas @p
+ * Get the highest (stacked) Evas object on the canvas @p e.
  *
  * @param e a valid canvas pointer
  * @return a pointer to the highest object on it, if any, or @c NULL,
@@ -7796,7 +7796,7 @@
  * object.
  *
  * @param obj The text object to set font for.
- * @param font The font file's path.
+ * @return The font file's path.
  *
  * @see evas_object_text_font_get() for more details
  */
@@ -8213,7 +8213,7 @@
  * Visible: formats that a cursor can point to, i.e formats that
  * occupy space, for example: newlines, tabs, items and etc. Some visible items
  * are made of two parts, in this case, only the opening tag is visible.
- * A closing tag (i.e a </tag> tag) should NEVER be visible.
+ * A closing tag (i.e a \</tag\> tag) should NEVER be visible.
  * Invisible: formats that don't occupy space, for example: bold and underline.
  * Being able to access format nodes is very important for some uses. For
  * example, edje uses the "<a>" format to create links in the text (and pop
@@ -8354,7 +8354,7 @@
 /**
  * Return the markup version of the plain text.
  *
- * Replaces \n -> <br/> \t -> <tab/> and etc. Generally needed before you pass
+ * Replaces \\n -\> \<br/\> \\t -\> \<tab/\> and etc. Generally needed before 
you pass
  * plain text to be set in a textblock.
  *
  * @param obj the textblock object to work with (if NULL, it just does the
@@ -8667,8 +8667,8 @@
 EAPI const Evas_Object_Textblock_Node_Format 
*evas_textblock_node_format_prev_get(const Evas_Object_Textblock_Node_Format 
*n) EINA_ARG_NONNULL(1);
 
 /**
- * Remove a format node and it's match. i.e, removes a <tag> </tag> pair.
- * Assumes the node is the first part of <tag> i.e, this won't work if
+ * Remove a format node and it's match. i.e, removes a \<tag\> \</tag\> pair.
+ * Assumes the node is the first part of \<tag\> i.e, this won't work if
  * n is a closing tag.
  *
  * @param obj the Evas object of the textblock - not null.
@@ -8697,7 +8697,7 @@
 /**
  * Get the text format representation of the format node.
  *
- * @param fmt the format node.
+ * @param fnode the format node.
  * @return the textual format of the format node.
  */
 EAPI const char                  *evas_textblock_node_format_text_get(const 
Evas_Object_Textblock_Node_Format *fnode) EINA_WARN_UNUSED_RESULT 
EINA_ARG_NONNULL(1);
@@ -8861,7 +8861,7 @@
  * the start of the text just added.
  *
  * @param cur the cursor to where to add text at.
- * @param _text the text to add.
+ * @param text the text to add.
  * @return Returns the len of the text added.
  * @see evas_textblock_cursor_text_prepend()
  */
@@ -8872,7 +8872,7 @@
  * the start of the text just added.
  *
  * @param cur the cursor to where to add text at.
- * @param _text the text to add.
+ * @param text the text to add.
  * @return Returns the len of the text added.
  * @see evas_textblock_cursor_text_append()
  */
@@ -9135,8 +9135,8 @@
  *
  *
  * @param obj the Evas object.
- * @param w[out] the width of the object.
- * @param h[out] the height of the object
+ * @param w the width of the object.
+ * @param h the height of the object
  * @return Returns no value.
  * @see evas_object_textblock_size_native_get
  */
@@ -9157,8 +9157,8 @@
  * and a formatted size of 5x4.
  *
  * @param obj the Evas object of the textblock
- * @param w[out] the width returned
- * @param h[out] the height returned
+ * @param w the width returned
+ * @param h the height returned
  * @return Returns no value.
  */
 EAPI void                         evas_object_textblock_size_native_get(const 
Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
@@ -9476,8 +9476,8 @@
  *    the user, after inheriting everything from the parent, which
  *    should <b>take care of setting the right member functions for
  *    the class</b>, both overrides and extensions, if any.
- *  - If this new class should be subclassable as well, a @b public @c
- *    _smart_set() function is desirable to fill in the class used as
+ *  - If this new class should be subclassable as well, a @b public
+ *    @c _smart_set() function is desirable to fill in the class used as
  *    parent by the children. It's up to the user to provide this
  *    interface, which will most likely call @<prefix@>_smart_set() to
  *    get the job done.
@@ -10804,7 +10804,7 @@
  * \par Child element's properties:
  * @c padding_l and @c padding_r sum up to the required width of the
  * child element. The @c align_x property tells the relative position
- * of this overall child width in its allocated cell (@r 0.0 to
+ * of this overall child width in its allocated cell (@c 0.0 to
  * extreme left, @c 1.0 to extreme right). A value of @c -1.0 to
  * @c align_x makes the box try to resize this child element to the exact
  * width of its cell (respecting the minimum and maximum size hints on
@@ -11101,7 +11101,7 @@
  * @note This call will trigger the box's
  * _Evas_Object_Box_Api::insert_after smart function.
  */
-EAPI Evas_Object_Box_Option    *evas_object_box_insert_after                   
       (Evas_Object *o, Evas_Object *child, const Evas_Object *referente) 
EINA_ARG_NONNULL(1, 2, 3);
+EAPI Evas_Object_Box_Option    *evas_object_box_insert_after                   
       (Evas_Object *o, Evas_Object *child, const Evas_Object *reference) 
EINA_ARG_NONNULL(1, 2, 3);
 
 /**
  * Insert a new @a child object <b>at a given position</b>, in a given
@@ -11311,7 +11311,7 @@
  * @param o The box parenting the child element
  * @param opt The box option structure bound to the child box element
  * to get a property from
- * @param id The numerical ID of the given property
+ * @param property The numerical ID of the given property
  * @param ... (List of) pointer(s) where to store the value(s) set for
  * this property. It (they) @b must point to variable(s) of the same
  * type the user has defined for it (them).
@@ -12216,7 +12216,7 @@
 
 /**
  * Removes the @p keyname key from the current list of modifier keys
- * on canvas @e.
+ * on canvas @p e.
  *
  * @param e The pointer to the Evas canvas
  * @param keyname The name of the key to remove from the modifiers list.
@@ -12262,7 +12262,7 @@
 
 /**
  * Removes the @p keyname key from the current list of lock keys on
- * canvas @e.
+ * canvas @p e.
  *
  * @param e The pointer to the Evas canvas
  * @param keyname The name of the key to remove from the locks list.
Index: evas/src/lib/Evas_GL.h
===================================================================
--- evas/src/lib/Evas_GL.h      (revision 69726)
+++ evas/src/lib/Evas_GL.h      (working copy)
@@ -418,9 +418,9 @@
  * Creates and returns new Evas_GL_Surface object for GL Rendering.
  *
  * @param evas_gl The given Evas_GL object.
- * @param config The pixel format and configuration of the rendering surface.
- * @param width The width of the surface.
- * @param height The height of the surface.
+ * @param cfg The pixel format and configuration of the rendering surface.
+ * @param w The width of the surface.
+ * @param h The height of the surface.
  * @return The created GL surface object, or NULL on failure.
  */
 EAPI Evas_GL_Surface         *evas_gl_surface_create     (Evas_GL *evas_gl, 
Evas_GL_Config *cfg, int w, int h) EINA_WARN_UNUSED_RESULT 
EINA_ARG_NONNULL(1,2);
--- /tmp/evas.log       2012-03-29 14:48:07.981948116 +0900
+++ /tmp/evas2.log      2012-03-29 20:07:10.932934636 +0900
@@ -2220,10 +2241,6 @@
 Parsing file 
/tmp/evas/src/lib/file/evas_path.c./tmp/evas/src/lib/include/evas_common.h:825: 
warning: no uniquely matching class member found for 
   _RGBA_Image::@59::LK(lock)
 
-/tmp/evas/src/lib/Evas.h:5966: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:5945: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:12199: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12245: warning: expected whitespace after e command
 ..
 Preprocessing /tmp/evas/src/lib/file/evas_path.h...
 Parsing file /tmp/evas/src/lib/file/evas_path.h...
@@ -2517,50 +2534,19 @@
 /tmp/evas/src/lib/Evas.h:838: warning: Member _Evas_Image_Animated_Loop_Hint 
(enumeration) of file Evas.h is not documented.
 /tmp/evas/src/lib/Evas.h:851: warning: Member _Evas_Image_Content_Hint 
(enumeration) of file Evas.h is not documented.
 /tmp/evas/src/lib/Evas.h:7722: warning: Member _Evas_Text_Style_Type 
(enumeration) of group Evas_Object_Text is not documented.
-/tmp/evas/src/lib/Evas.h:5945: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:5966: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:12199: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12245: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:294: warning: Unsupported xml/html tag <tbd> found
-/tmp/evas/src/lib/Evas.h:295: warning: Unsupported xml/html tag <tbd> found
-/tmp/evas/src/lib/Evas.h:1497: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:3273: warning: end of comment block while expecting 
command </b>
-/tmp/evas/src/lib/Evas.h:3273: warning: end of comment block while expecting 
command </b>
-/tmp/evas/src/lib/Evas.h:3468: warning: Found unknown command `\obj'
 /tmp/evas/src/lib/Evas.h:3722: warning: explicit link request to 
'Evas_Canvas_Events' could not be resolved
-/tmp/evas/src/lib/Evas.h:4125: warning: argument 'pass' of command @param is 
not found in the argument list of evas_object_freeze_events_set(Evas_Object 
*obj, Eina_Bool freeze)
-/tmp/evas/src/lib/Evas.h:4125: warning: The following parameters of 
evas_object_freeze_events_set(Evas_Object *obj, Eina_Bool freeze) are not 
documented:
-  parameter 'freeze'
-/tmp/evas/src/lib/Evas.h:4074: warning: Found unknown command `\retrieve'
-/tmp/evas/src/lib/Evas.h:5610: warning: argument 'anti_alias' of command 
@param is not found in the argument list of 
evas_object_anti_alias_set(Evas_Object *obj, Eina_Bool antialias)
-/tmp/evas/src/lib/Evas.h:5610: warning: The following parameters of 
evas_object_anti_alias_set(Evas_Object *obj, Eina_Bool antialias) are not 
documented:
-  parameter 'antialias'
-/tmp/evas/src/lib/Evas.h:5662: warning: argument 'render_op' of command @param 
is not found in the argument list of evas_object_render_op_set(Evas_Object 
*obj, Evas_Render_Op op)
-/tmp/evas/src/lib/Evas.h:5662: warning: The following parameters of 
evas_object_render_op_set(Evas_Object *obj, Evas_Render_Op op) are not 
documented:
-  parameter 'op'
-/tmp/evas/src/lib/Evas.h:5740: warning: Found unknown command `\returrn'
-/tmp/evas/src/lib/Evas.h:5945: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:5966: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:5945: warning: expected whitespace after p command
-/tmp/evas/src/lib/Evas.h:5966: warning: expected whitespace after p command
 /tmp/evas/src/lib/Evas.h:6405: warning: End of list marker found has invalid 
indent level
 /tmp/evas/src/lib/Evas.h:6424: warning: End of list marker found has invalid 
indent level
 /tmp/evas/src/lib/Evas.h:6450: warning: End of list marker found has invalid 
indent level
 /tmp/evas/src/lib/Evas.h:6454: warning: End of list marker found has invalid 
indent level
 /tmp/evas/src/lib/Evas.h:6481: warning: End of list marker found has invalid 
indent level
 /tmp/evas/src/lib/Evas.h:7722: warning: Member _Evas_Text_Style_Type 
(enumeration) of group Evas_Object_Text is not documented.
-/tmp/evas/src/lib/Evas.h:7775: warning: argument 'font' of command @param is 
not found in the argument list of evas_object_text_font_source_get(const 
Evas_Object *obj)
 /tmp/evas/src/lib/Evas.h:8142: warning: unable to resolve reference to 
`Evas_Object_Textblock_Internal' for \ref command
 /tmp/evas/src/lib/Evas.h:8164: warning: unable to resolve reference to 
`Evas_Textblock_Cursor' for \ref command
-/tmp/evas/src/lib/Evas.h:8194: warning: Unsupported xml/html tag </tag> found
 /tmp/evas/src/lib/Evas.h:8208: warning: unable to resolve reference to 
`evas_object_textblock_format_append' for \ref command
 /tmp/evas/src/lib/Evas.h:8209: warning: unable to resolve reference to 
`evas_object_textblock_format_prepend' for \ref command
 /tmp/evas/src/lib/Evas.h:9087: warning: explicit link request to 'EINA_TRUE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:9087: warning: explicit link request to 'EINA_FALSE' 
could not be resolved
-/tmp/evas/src/lib/Evas.h:9103: warning: argument 'out' of command @param is 
not found in the argument list of 
evas_object_textblock_size_formatted_get(const Evas_Object *obj, Evas_Coord *w, 
Evas_Coord *h)
-/tmp/evas/src/lib/Evas.h:9103: warning: argument 'out' of command @param is 
not found in the argument list of 
evas_object_textblock_size_formatted_get(const Evas_Object *obj, Evas_Coord *w, 
Evas_Coord *h)
-/tmp/evas/src/lib/Evas.h:9126: warning: argument 'out' of command @param is 
not found in the argument list of evas_object_textblock_size_native_get(const 
Evas_Object *obj, Evas_Coord *w, Evas_Coord *h)
-/tmp/evas/src/lib/Evas.h:9126: warning: argument 'out' of command @param is 
not found in the argument list of evas_object_textblock_size_native_get(const 
Evas_Object *obj, Evas_Coord *w, Evas_Coord *h)
 /tmp/evas/src/lib/Evas.h:9045: warning: explicit link request to 'EINA_TRUE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:9045: warning: explicit link request to 'EINA_FALSE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:8730: warning: explicit link request to 'EINA_TRUE' 
could not be resolved
@@ -2586,33 +2572,12 @@
 /tmp/evas/src/lib/Evas.h:8602: warning: explicit link request to 'EINA_TRUE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:8602: warning: explicit link request to 'EINA_FALSE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:8925: warning: End of list marker found without any 
preceding list items
-/tmp/evas/src/lib/Evas.h:8840: warning: argument '_text' of command @param is 
not found in the argument list of 
evas_textblock_cursor_text_append(Evas_Textblock_Cursor *cur, const char *text)
-/tmp/evas/src/lib/Evas.h:8840: warning: The following parameters of 
evas_textblock_cursor_text_append(Evas_Textblock_Cursor *cur, const char *text) 
are not documented:
-  parameter 'text'
-/tmp/evas/src/lib/Evas.h:8851: warning: argument '_text' of command @param is 
not found in the argument list of 
evas_textblock_cursor_text_prepend(Evas_Textblock_Cursor *cur, const char *text)
-/tmp/evas/src/lib/Evas.h:8851: warning: The following parameters of 
evas_textblock_cursor_text_prepend(Evas_Textblock_Cursor *cur, const char 
*text) are not documented:
-  parameter 'text'
 /tmp/evas/src/lib/Evas.h:8755: warning: explicit link request to 'EINA_TRUE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:8755: warning: explicit link request to 'EINA_FALSE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:8746: warning: explicit link request to 'EINA_TRUE' 
could not be resolved
 /tmp/evas/src/lib/Evas.h:8746: warning: explicit link request to 'EINA_FALSE' 
could not be resolved
-/tmp/evas/src/lib/Evas.h:8650: warning: Unsupported xml/html tag <tag> found
-/tmp/evas/src/lib/Evas.h:8650: warning: Unsupported xml/html tag </tag> found
-/tmp/evas/src/lib/Evas.h:8651: warning: Unsupported xml/html tag <tag> found
-/tmp/evas/src/lib/Evas.h:8678: warning: argument 'fmt' of command @param is 
not found in the argument list of evas_textblock_node_format_text_get(const 
Evas_Object_Textblock_Node_Format *fnode)
-/tmp/evas/src/lib/Evas.h:8678: warning: The following parameters of 
evas_textblock_node_format_text_get(const Evas_Object_Textblock_Node_Format 
*fnode) are not documented:
-  parameter 'fnode'
-/tmp/evas/src/lib/Evas.h:8335: warning: Found unknown command `\t'
-/tmp/evas/src/lib/Evas.h:8335: warning: Unsupported xml/html tag <tab> found
 /tmp/evas/src/lib/Evas.h:9515: warning: expected whitespace after c command
 /tmp/evas/src/lib/Evas.h:9602: warning: explicit link request to 
'Evas_Smart_Class::callbacks' could not be resolved
-/tmp/evas/src/lib/Evas.h:11064: warning: argument 'reference' of command 
@param is not found in the argument list of 
evas_object_box_insert_after(Evas_Object *o, Evas_Object *child, const 
Evas_Object *referente)
-/tmp/evas/src/lib/Evas.h:11064: warning: The following parameters of 
evas_object_box_insert_after(Evas_Object *o, Evas_Object *child, const 
Evas_Object *referente) are not documented:
-  parameter 'referente'
-/tmp/evas/src/lib/Evas.h:10784: warning: Found unknown command `\r'
-/tmp/evas/src/lib/Evas.h:11288: warning: argument 'id' of command @param is 
not found in the argument list of 
evas_object_box_option_property_get(Evas_Object *o, Evas_Object_Box_Option 
*opt, int property,...)
-/tmp/evas/src/lib/Evas.h:11288: warning: The following parameters of 
evas_object_box_option_property_get(Evas_Object *o, Evas_Object_Box_Option 
*opt, int property,...) are not documented:
-  parameter 'property'
 /tmp/evas/src/lib/Evas.h:11205: warning: argument 'id' of command @param is 
not found in the argument list of 
evas_object_box_option_property_name_get(Evas_Object *o, int property)
 /tmp/evas/src/lib/Evas.h:11205: warning: The following parameters of 
evas_object_box_option_property_name_get(Evas_Object *o, int property) are not 
documented:
   parameter 'property'
@@ -2648,21 +2613,8 @@
 /tmp/evas/src/lib/Evas.h:11606: warning: The following parameters of 
evas_object_grid_mirrored_set(Evas_Object *o, Eina_Bool mirrored) are not 
documented:
   parameter 'o'
 /tmp/evas/src/lib/Evas.h:11879: warning: included file evas-load-error-str.c 
is not found. Check your EXAMPLE_PATH
-/tmp/evas/src/lib/Evas.h:12199: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12245: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12245: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12245: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12199: warning: expected whitespace after e command
-/tmp/evas/src/lib/Evas.h:12199: warning: expected whitespace after e command
 /tmp/evas/src/lib/Evas_GL.h:436: warning: The following parameters of 
evas_gl_context_create(Evas_GL *evas_gl, Evas_GL_Context *share_ctx) are not 
documented:
   parameter 'share_ctx'
-/tmp/evas/src/lib/Evas_GL.h:417: warning: argument 'config' of command @param 
is not found in the argument list of evas_gl_surface_create(Evas_GL *evas_gl, 
Evas_GL_Config *cfg, int w, int h)
-/tmp/evas/src/lib/Evas_GL.h:417: warning: argument 'width' of command @param 
is not found in the argument list of evas_gl_surface_create(Evas_GL *evas_gl, 
Evas_GL_Config *cfg, int w, int h)
-/tmp/evas/src/lib/Evas_GL.h:417: warning: argument 'height' of command @param 
is not found in the argument list of evas_gl_surface_create(Evas_GL *evas_gl, 
Evas_GL_Config *cfg, int w, int h)
-/tmp/evas/src/lib/Evas_GL.h:417: warning: The following parameters of 
evas_gl_surface_create(Evas_GL *evas_gl, Evas_GL_Config *cfg, int w, int h) are 
not documented:
-  parameter 'cfg'
-  parameter 'w'
-  parameter 'h'
 end_pixel_neon.c...
 Parsing code for file op_blend_pixel_sse3.c...
 Parsing code for file op_copy_color_.c...

Attachment: signature.asc
Description: Digital signature

------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to