efl_control,efl_text: convert docs
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Thu, 18 Jun 2015 10:21:43 +0000 (11:21 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Thu, 18 Jun 2015 10:21:43 +0000 (11:21 +0100)
src/lib/efl/interfaces/efl_control.eo
src/lib/efl/interfaces/efl_text.eo

index 863cc11..ec587f6 100644 (file)
@@ -4,23 +4,23 @@ interface Efl.Control {
    legacy_prefix: null;
    methods {
         @property priority {
-             /*@ Control the priority of the object. */
+             [[Control the priority of the object.]]
              set {
              }
              get {
              }
              values {
-                  priority: int; /*@ The priority of the object */
+                  priority: int; [[The priority of the object]]
              }
         }
         @property suspend {
-             /*@ Controls whether the object is suspended or not. */
+             [[Controls whether the object is suspended or not.]]
              set {
              }
              get {
              }
              values {
-                  suspend: bool; /*@ Controls whether the object is suspended or not. */
+                  suspend: bool; [[Controls whether the object is suspended or not.]]
              }
         }
    }
index 73ba6bf..b8f2d58 100644 (file)
@@ -3,24 +3,22 @@ interface Efl.Text {
    methods {
       @property text {
          set {
-            /*@
-            Sets the text string to be displayed by the given text object.
+            [[Sets the text string to be displayed by the given text object.
 
-            @see evas_object_text_text_get() */
+              See also @evas_object_text_text_get.
+            ]]
          }
          get {
-            /*@
-            Retrieves the text string currently being displayed by the given
-            text object.
+            [[Retrieves the text string currently being displayed by the given
+              text object.
 
-            @return The text string currently being displayed on it.
+              Do not free() the return value.
 
-            @note Do not free() the return value.
-
-            @see evas_object_text_text_set() */
+              See also @evas_object_text_text_set.
+            ]]
          }
          values {
-            text: const(char)*; /*@ Text string to display on it. */
+            text: const(char)*; [[Text string to display on it.]]
          }
       }
    }