elm_entry: fix typos

SVN revision: 70450
This commit is contained in:
Jihoon Kim 2012-04-24 22:59:17 +00:00
parent 42865eba02
commit 5935983614
1 changed files with 3 additions and 3 deletions

View File

@ -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);