jackdanielz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=b9f05fe7528cdda8fcddc29ad755ee514af952dd

commit b9f05fe7528cdda8fcddc29ad755ee514af952dd
Author: Daniel Zaoui <[email protected]>
Date:   Tue Apr 29 08:45:10 2014 +0300

    Eolian: fix elm_widget.eo
    
    part_text has to be an extra property, not a method.
---
 src/lib/elm_widget.eo | 29 ++++++++++++++---------------
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/src/lib/elm_widget.eo b/src/lib/elm_widget.eo
index 1656af2..8eb1d44 100644
--- a/src/lib/elm_widget.eo
+++ b/src/lib/elm_widget.eo
@@ -421,6 +421,20 @@ abstract Elm_Widget (Evas_Smart, 
Elm_Interface_Atspi_Widget)
             Evas_Object *parent;
          }
       }
+      part_text {
+         set {
+            /*@ No description supplied by the EAPI. */
+         }
+         get {
+            /*@ No description supplied by the EAPI. */
+         }
+         keys {
+            const char *part;
+         }
+         values {
+            const char *label;
+         }
+      }
    }
    methods {
       newest_focus_order_get {
@@ -729,21 +743,6 @@ abstract Elm_Widget (Evas_Smart, 
Elm_Interface_Atspi_Widget)
          /*@ No description supplied by the EAPI. */
          legacy null;
       }
-      part_text_set {
-         /*@ No description supplied by the EAPI. */
-         params {
-            @in const char *part;
-            @in const char *label;
-         }
-      }
-      part_text_get {
-         /*@ No description supplied by the EAPI. */
-         const;
-         return const char *;
-         params {
-            @in const char *part;
-         }
-      }
       theme_apply {
          /*@ 'Virtual' function on the widget being re-themed. */
          return Eina_Bool;

-- 


Reply via email to