Fix "return with no value in function returning non-void"

SVN revision: 39498
This commit is contained in:
Christopher Michael 2009-03-15 19:22:37 +00:00
parent be28e1636b
commit 30936df4a3
1 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ e_scrollframe_extern_pan_set(Evas_Object *obj, Evas_Object *pan,
EAPI int
e_scrollframe_custom_theme_set(Evas_Object *obj, char *custom_category, char *custom_group)
{
API_ENTRY return;
API_ENTRY return 0;
if (!e_theme_edje_object_set(sd->edje_obj, custom_category, custom_group))
return 0;
@ -204,7 +204,7 @@ e_scrollframe_custom_theme_set(Evas_Object *obj, char *custom_category, char *cu
EAPI int
e_scrollframe_custom_edje_file_set(Evas_Object *obj, char *file, char *group)
{
API_ENTRY return;
API_ENTRY return 0;
if (!edje_object_file_set(sd->edje_obj, file, group))
return 0;