From 49b2998bb46895de97252d5e65c1329756fbccc0 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 1 Jun 2015 10:30:16 +0100 Subject: [PATCH] Evas common interface: Add a workaround for Eolian issue. This should be fixed properly once Eolian supports forward class declarations. --- src/lib/evas/canvas/evas_common_interface.eo | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_common_interface.eo b/src/lib/evas/canvas/evas_common_interface.eo index cc2952b6f5..134855d6a5 100644 --- a/src/lib/evas/canvas/evas_common_interface.eo +++ b/src/lib/evas/canvas/evas_common_interface.eo @@ -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 *; } } }