jihoon pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ca16bcbf23196a30e2b9450711c35e17d4b787a0
commit ca16bcbf23196a30e2b9450711c35e17d4b787a0 Author: Jihoon Kim <[email protected]> Date: Tue Nov 26 08:48:21 2013 +0900 fix clang warning in _edje_entry_focus_in_cb --- src/lib/edje/edje_entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/edje/edje_entry.c b/src/lib/edje/edje_entry.c index 3c13585..e8afc55 100644 --- a/src/lib/edje/edje_entry.c +++ b/src/lib/edje/edje_entry.c @@ -110,7 +110,7 @@ _edje_entry_focus_in_cb(void *data, Evas_Object *o, const char *emission EINA_UN if (!rp->typedata.text->entry_data) return; ed = _edje_fetch(o); - if (ed) return; + if (!ed) return; en = rp->typedata.text->entry_data; if (!en || !en->imf_context) return; --
