elput: fix sp. usefull

Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4935

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Bryce Harrington 2017-06-05 10:58:01 -07:00 committed by Cedric BAIL
parent a026fad779
commit e1fbde9e5b
3 changed files with 5 additions and 5 deletions

View File

@ -545,7 +545,7 @@ in this Software without prior written authorization from The Open Group.
*/
if (((c >= '@') && (c <= '_')) || /* those are the one defined in C0 with capital letters */
((c >= 'a') && (c <= 'z')) || /* the lowercase symbols (not part of the standard, but usefull */
((c >= 'a') && (c <= 'z')) || /* the lowercase symbols (not part of the standard, but useful) */
c == ' ')
c &= 0x1F;
else if (c == '\x7f')
@ -569,7 +569,7 @@ in this Software without prior written authorization from The Open Group.
}
else
{
/* if its not a control code, try to produce a usefull output */
/* if its not a control code, try to produce useful output */
if (!xkb_keysym_to_utf8(keysym, buffer, bytes))
return 0;
}

View File

@ -4186,7 +4186,7 @@ _elm_widget_efl_object_dbg_info_get(Eo *eo_obj, Elm_Widget_Smart_Data *_pd EINA_
}
//if thats a focus manager, give usefull informations like the border elements
//if thats a focus manager, give useful information like the border elements
if (efl_isa(eo_obj, EFL_UI_FOCUS_MANAGER_CLASS))
{
Efl_Dbg_Info *border;

View File

@ -535,7 +535,7 @@ in this Software without prior written authorization from The Open Group.
*/
if (((c >= '@') && (c <= '_')) || /* those are the one defined in C0 with capital letters */
((c >= 'a') && (c <= 'z')) || /* the lowercase symbols (not part of the standard, but usefull */
((c >= 'a') && (c <= 'z')) || /* the lowercase symbols (not part of the standard, but useful) */
c == ' ')
c &= 0x1F;
else if (c == '\x7f')
@ -559,7 +559,7 @@ in this Software without prior written authorization from The Open Group.
}
else
{
/* if its not a control code, try to produce a usefull output */
/* if its not a control code, try to produce useful output */
if (!xkb_keysym_to_utf8(keysym, buffer, bytes))
return 0;
}