Evas common interface: Add a workaround for Eolian issue.
authorTom Hacohen <tom@stosb.com>
Mon, 1 Jun 2015 09:30:16 +0000 (10:30 +0100)
committerTom Hacohen <tom@stosb.com>
Mon, 1 Jun 2015 09:34:08 +0000 (10:34 +0100)
This should be fixed properly once Eolian supports forward class
declarations.

src/lib/evas/canvas/evas_common_interface.eo

index cc2952b..134855d 100644 (file)
@@ -8,7 +8,8 @@ interface Evas.Common_Interface ()
             legacy: evas_object_evas_get;
          }
          values {
-            ret: Evas *;
+            /* FIXME: This is actually wrong, should return Evas. */
+            ret: Evas.Common_Interface *;
          }
       }
    }