viking

webkit based web browser for Enlightenment
Log | Files | Refs | LICENSE

commit fff28d1d47477aa3f2fa4c01dfa56292379ace24
parent e8e76a62f70e6f0674095c5a07b125c309a1f262
Author: Kyle Milz <kmilz@ucalgary.ca>
Date:   Fri, 19 Oct 2012 16:27:39 -0600

fix compiler warning + don't call elm_focus_disable

Diffstat:
Msrc/window.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/window.c b/src/window.c @@ -56,7 +56,7 @@ inputbox_activate_cb(void *data, Evas_Object *obj, void *event_info) /* process_line above may have deleted the tab, check if its still around */ if (wd->cur_buf->view) { - elm_object_focus_set(elm_object_top_widget_get(wd->win), EINA_FALSE); + // elm_object_focus_set(elm_object_top_widget_get(wd->win), EINA_FALSE); evas_object_focus_set(wd->cur_buf->view, EINA_TRUE); } } @@ -328,7 +328,7 @@ delete_request_cb(void *data, Evas_Object *obj, void *event_info) static void free_cb(void *data, Evas *e, Evas_Object *obj, void *event_info) { - Window_Data *wd = data; + // Window_Data *wd = data; printf("window_free_cb()\n"); // free(wd); }