The Shadow was here.

SVN revision: 64022
This commit is contained in:
Iván Briano 2011-10-12 18:01:21 +00:00
parent f842f67f28
commit ec9781ce40
1 changed files with 3 additions and 3 deletions

View File

@ -1314,14 +1314,14 @@ elm_web_selection_get(const Evas_Object *obj)
} }
EAPI void EAPI void
elm_web_popup_selected_set(Evas_Object *obj, int index) elm_web_popup_selected_set(Evas_Object *obj, int idx)
{ {
ELM_CHECK_WIDTYPE(obj, widtype); ELM_CHECK_WIDTYPE(obj, widtype);
#ifdef HAVE_ELEMENTARY_WEB #ifdef HAVE_ELEMENTARY_WEB
Widget_Data *wd = elm_widget_data_get(obj); Widget_Data *wd = elm_widget_data_get(obj);
ewk_view_popup_selected_set(wd->ewk_view, index); ewk_view_popup_selected_set(wd->ewk_view, idx);
#else #else
(void)index; (void)idx;
#endif #endif
} }