Evas smart: Fix namespacing to use . and not _.

This commit is contained in:
Tom Hacohen 2016-05-12 11:33:59 +01:00
parent 6a3bd5c5fb
commit 278b16b058
6 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
import edje_types;
class Edje.Object (Evas.Smart_Clipped, Efl.File, Efl.Container)
class Edje.Object (Evas.Smart.Clipped, Efl.File, Efl.Container)
{
legacy_prefix: edje_object;
eo_prefix: edje_obj;

View File

@ -1,4 +1,4 @@
class Elm.Pan (Evas.Smart_Clipped)
class Elm.Pan (Evas.Smart.Clipped)
{
eo_prefix: elm_obj_pan;
data: Elm_Pan_Smart_Data;

View File

@ -4,7 +4,7 @@ type @extern Evas_Object_Box_Layout: __undefined_type; /* FIXME: Function pointe
type @extern Eina_Free_Cb: __undefined_type; /* FIXME: Function pointers are not supported */
type @extern va_list: __undefined_type; /* FIXME: va_list is not supported */
class Evas.Box (Evas.Smart_Clipped)
class Evas.Box (Evas.Smart.Clipped)
{
legacy_prefix: evas_object_box;
eo_prefix: evas_obj_box;

View File

@ -1,4 +1,4 @@
class Evas.Grid (Evas.Smart_Clipped)
class Evas.Grid (Evas.Smart.Clipped)
{
legacy_prefix: evas_object_grid;
eo_prefix: evas_obj_grid;

View File

@ -1,4 +1,7 @@
class Evas.Smart_Clipped (Evas.Object.Smart)
/* XXX: It's Evas.Smart.Clipped and not Evas.Object.Smart.Clipped because of
clashes with legacy. Not edaling with it too much because it'll be deprecated
soon anyway. */
class Evas.Smart.Clipped (Evas.Object.Smart)
{
legacy_prefix: evas_object_smart_clipped;
eo_prefix: evas_obj_smart_clipped;

View File

@ -9,7 +9,7 @@ enum Evas.Object_Table.Homogeneous_Mode {
item = 2
}
class Evas.Table (Evas.Smart_Clipped)
class Evas.Table (Evas.Smart.Clipped)
{
legacy_prefix: evas_object_table;
eo_prefix: evas_obj_table;