From: jihoon Date: Tue, 24 Apr 2012 22:59:17 +0000 (+0000) Subject: elm_entry: fix typos X-Git-Tag: sbs/armel/slp2-target~24^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4de59404360e22f2c6c87958a1e548bb1c5c4cb2;p=framework%2Fuifw%2Felementary.git elm_entry: fix typos git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@70450 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index cdf5f31..19dbbb6 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -658,7 +658,7 @@ _elm_deferred_recalc_job(void *data) elm_coords_finger_size_adjust(1, &minw, 1, &minh); /* This is a hack to workaround the way min size hints are treated. * If the minimum width is smaller than the restricted width, it means - * the mininmum doesn't matter. */ + * the minimum doesn't matter. */ if (minw <= resw) { Evas_Coord ominw = -1; @@ -743,7 +743,7 @@ _sizing_eval(Evas_Object *obj) elm_coords_finger_size_adjust(1, &minw, 1, &minh); /* This is a hack to workaround the way min size hints are treated. * If the minimum width is smaller than the restricted width, it means - * the mininmum doesn't matter. */ + * the minimum doesn't matter. */ if (minw <= vw) { Evas_Coord ominw = -1; @@ -2718,7 +2718,7 @@ elm_entry_is_empty(const Evas_Object *obj) * otherwise it is. */ tb = edje_object_part_object_get(wd->ent, "elm.text"); cur = evas_object_textblock_cursor_new((Evas_Object *) tb); /* This is - actually, ok for the time being, thsese hackish stuff will be removed + actually, ok for the time being, these hackish stuff will be removed once evas 1.0 is out*/ evas_textblock_cursor_pos_set(cur, 0); ret = evas_textblock_cursor_char_next(cur);