From 6df0af6b4ee5e12f6f2153229c7cec14c4511e38 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 1 Jun 2015 14:03:04 +0100 Subject: [PATCH] Eo types: Fix Eina.Stringshare's namespace. --- src/lib/eo/eina_types.eot | 2 +- src/lib/eo/eo_base.eo | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eo/eina_types.eot b/src/lib/eo/eina_types.eot index 4340cc3096..070d55d29e 100644 --- a/src/lib/eo/eina_types.eot +++ b/src/lib/eo/eina_types.eot @@ -1,6 +1,6 @@ /* FIXME: Move to Eina when we decide they are handled properly. */ -type @extern Eina_Stringshare: const(char) *; struct @extern Eina_Rectangle { +type @extern Eina.Stringshare: const(char) *; x: int; y: int; w: int; diff --git a/src/lib/eo/eo_base.eo b/src/lib/eo/eo_base.eo index 546a61d375..d2753a5638 100644 --- a/src/lib/eo/eo_base.eo +++ b/src/lib/eo/eo_base.eo @@ -25,7 +25,7 @@ struct Eo.Dbg_Info { /*@ * The structure for the debug info used by Eo. */ - name: Eina_Stringshare *; /*@< The name of the part (stringshare). */ + name: Eina.Stringshare *; /*@< The name of the part (stringshare). */ value: generic_value; /*@< The value. */ }