[elm] And I forgot this for elm_web.

SVN revision: 75469
This commit is contained in:
Gustavo Lima Chaves 2012-08-20 16:58:23 +00:00
parent 111b4e4d12
commit 867372285b
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ _confirm_hook(void *data __UNUSED__, Evas_Object *obj, const char *message, Eina
}
static Evas_Object *
_prompt_hook(void *data __UNUSED__, Evas_Object *obj __UNUSED__, const char *message __UNUSED__, const char *default_value, char **value, Eina_Bool *response)
_prompt_hook(void *data __UNUSED__, Evas_Object *obj __UNUSED__, const char *message __UNUSED__, const char *default_value, const char **value, Eina_Bool *response)
{
*response = EINA_TRUE;
*value = default_value ? strdup(default_value) : "No default!";