From: Jihoon Kim Date: Mon, 13 Jan 2014 23:07:22 +0000 (+0900) Subject: entry: remove duplicated checking variable X-Git-Tag: upstream/1.20.0~7116^2~14^2~3419 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf0c4e921a7da868c2917ac6216626eca2f10be7;p=platform%2Fupstream%2Fefl.git entry: remove duplicated checking variable 'top' variable was checked twice, so it's fixed. --- diff --git a/legacy/elementary/src/lib/elm_entry.c b/legacy/elementary/src/lib/elm_entry.c index e736b51..3324c8f 100644 --- a/legacy/elementary/src/lib/elm_entry.c +++ b/legacy/elementary/src/lib/elm_entry.c @@ -1597,7 +1597,7 @@ _mouse_up_cb(void *data, top = elm_widget_top_get(data); if (top) { - if (top && eo_isa(top, ELM_OBJ_WIN_CLASS)) + if (eo_isa(top, ELM_OBJ_WIN_CLASS)) top_is_win = EINA_TRUE; if (top_is_win && sd->input_panel_enable && sd->input_panel_show_on_demand &&