Thanks! I should sleep more seriously. Daniel Juyung Seo (SeoZ)
On Tue, Jan 14, 2014 at 8:08 AM, Jihoon Kim <[email protected]> wrote: > jihoon pushed a commit to branch master. > > > http://git.enlightenment.org/core/elementary.git/commit/?id=e81b07b54984137f3a3cc0b53233d33fd60a518d > > commit e81b07b54984137f3a3cc0b53233d33fd60a518d > Author: Jihoon Kim <[email protected]> > Date: Tue Jan 14 08:07:22 2014 +0900 > > entry: remove duplicated checking variable > > 'top' variable was checked twice, so it's fixed. > --- > src/lib/elm_entry.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c > index e736b51..3324c8f 100644 > --- a/src/lib/elm_entry.c > +++ b/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 && > > -- > > > ------------------------------------------------------------------------------ CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Choosing CenturyLink Cloud For Critical Workloads, Development Environments & Everything In Between. Get a Quote or Start a Free Trial Today. http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
