Fix compiler warnings ... yes, they were fairly harmless, but I hate

seeing warnings during compile, especially when they are easily
corrected.



SVN revision: 49109
This commit is contained in:
Christopher Michael 2010-05-21 17:16:42 +00:00
parent 317230f240
commit 364c11ca14
2 changed files with 5 additions and 5 deletions

View File

@ -102,7 +102,7 @@ _win_foc_out(void *data, Evas *e, void *event_info)
}
static void
_close_win(void *data, Evas *e, void *event_info)
_close_win(void *data, Evas_Object *obj, void *event_info)
{
evas_object_del(data);
}

View File

@ -139,7 +139,7 @@ external_fileselector_button_param_get(void *data __UNUSED__, const Evas_Object
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_button_is_save_get(obj);
param->i = elm_fileselector_button_is_save_get((Evas_Object *)obj);
return EINA_TRUE;
}
}
@ -147,7 +147,7 @@ external_fileselector_button_param_get(void *data __UNUSED__, const Evas_Object
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_button_folder_only_get(obj);
param->i = elm_fileselector_button_folder_only_get((Evas_Object *)obj);
return EINA_TRUE;
}
}
@ -155,7 +155,7 @@ external_fileselector_button_param_get(void *data __UNUSED__, const Evas_Object
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_button_expandable_get(obj);
param->i = elm_fileselector_button_expandable_get((Evas_Object *)obj);
return EINA_TRUE;
}
}
@ -163,7 +163,7 @@ external_fileselector_button_param_get(void *data __UNUSED__, const Evas_Object
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_button_inwin_mode_get(obj);
param->i = elm_fileselector_button_inwin_mode_get((Evas_Object *)obj);
return EINA_TRUE;
}
}