q66 pushed a commit to branch master.

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

commit 786f848f67d06bf9c92802c7d11b9253574bb7db
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Thu Jun 11 16:51:43 2015 +0100

    evas,ecore_con: more struct/enum doc updates
---
 src/lib/ecore_con/ecore_con_base.eo  |  4 ++--
 src/lib/evas/canvas/evas_textgrid.eo | 27 +++++++++++++++------------
 2 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/src/lib/ecore_con/ecore_con_base.eo 
b/src/lib/ecore_con/ecore_con_base.eo
index 48e92c2..10ffeba 100644
--- a/src/lib/ecore_con/ecore_con_base.eo
+++ b/src/lib/ecore_con/ecore_con_base.eo
@@ -175,8 +175,8 @@ abstract Ecore.Con.Base (Eo.Base) {
 
 /* FIXME: Should actually be a binbuf. */
 struct Ecore_Con_Event_Data_Received {
-    data: void *; /*@ The data thet got sent. */
-    size: int; /*@ The length of the data sent. */
+    data: void *; [[The data thet got sent.]]
+    size: int; [[The length of the data sent.]]
 }
 
 /* TODO
diff --git a/src/lib/evas/canvas/evas_textgrid.eo 
b/src/lib/evas/canvas/evas_textgrid.eo
index b6fa285..9ef3816 100644
--- a/src/lib/evas/canvas/evas_textgrid.eo
+++ b/src/lib/evas/canvas/evas_textgrid.eo
@@ -1,19 +1,22 @@
 enum Evas.Textgrid.Palette {
-   /*@ The palette to use for the foreground and background colors.
-    @since 1.7 */
-   none,     /**< No palette is used */
-   standard, /**< standard palette (around 16 colors) */
-   extended, /**< extended palette (at max 256 colors) */
-   last      /**< ignore it */
+   [[The palette to use for the foreground and background colors.
+
+     @since 1.7
+   ]]
+   none,     [[No palette is used]]
+   standard, [[standard palette (around 16 colors)]]
+   extended, [[extended palette (at max 256 colors)]]
+   last      [[ignore it]]
 }
 
 enum Evas.Textgrid.Font_Style {
-   /*@ * The style to give to each character of the grid.
-    * @since 1.7
-    */
-   normal = (1 << 0), /**< Normal style */
-   bold   = (1 << 1), /**< Bold style */
-   italic = (1 << 2)  /**< Oblique style */
+   [[The style to give to each character of the grid.
+
+     @since 1.7
+   ]]
+   normal = (1 << 0), [[Normal style]]
+   bold   = (1 << 1), [[Bold style]]
+   italic = (1 << 2)  [[Oblique style]]
 }
 
 /* XXX: Acutal definition is in C. */

-- 


Reply via email to