evas: fix missing render2_walk initializers

This caused annoying compiler warnings that are gone now.

@fix
This commit is contained in:
Daniel Kolesa 2015-07-21 13:54:23 +01:00
parent 07549d0669
commit c4d666805d
7 changed files with 8 additions and 1 deletions

View File

@ -224,7 +224,8 @@ static const Evas_Object_Func object_func =
NULL,
evas_object_image_has_opaque_rect,
evas_object_image_get_opaque_rect,
evas_object_image_can_map
evas_object_image_can_map,
NULL
};
static const Evas_Object_Image_Load_Opts default_load_opts = {

View File

@ -84,6 +84,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL,
NULL
};

View File

@ -85,6 +85,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL,
NULL
};

View File

@ -107,6 +107,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL,
NULL
};

View File

@ -136,6 +136,7 @@ static const Evas_Object_Func object_func =
evas_object_text_scale_update,
NULL,
NULL,
NULL,
NULL
};

View File

@ -583,6 +583,7 @@ static const Evas_Object_Func object_func =
evas_object_textblock_scale_update,
NULL,
NULL,
NULL,
NULL
};

View File

@ -162,6 +162,7 @@ static const Evas_Object_Func object_func =
evas_object_textgrid_scale_update,
NULL,
NULL,
NULL,
NULL
};