Fix typos

Summary: Fix some typos.

Differential Revision: https://phab.enlightenment.org/D12032
This commit is contained in:
Boris Faure 2020-07-05 20:19:59 +02:00
parent 3ee79131e4
commit 9f2f8464f3
Signed by: borisfaure
GPG Key ID: 35C0410516166BE8
8 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ _ipc_cb_client_data(void *_data EINA_UNUSED,
{
if (func_new_inst) func_new_inst(inst);
// NOTE strings in inst are part of the inst alloc blob and
// dont need separate frees.
// don't need separate frees.
free(inst);
}
}

View File

@ -224,7 +224,7 @@ _type_thumb_init2(Evas_Object *obj)
{
theme = efreet_icon_theme_find(*itr);
if (!theme) continue;
//try to fetch the icon, if we dont find it, continue at other themes
//try to fetch the icon, if we don't find it, continue at other themes
icon_theme = eina_stringshare_add(theme->name.internal);
fl = efreet_icon_path_find(icon_theme, sd->realf, sd->iw);
if (fl) break;
@ -573,7 +573,7 @@ _type_edje_init(Evas_Object *obj)
int i;
const char *groups[] =
{
"terminology/backgroud",
"terminology/background",
"e/desktop/background",
NULL
};

View File

@ -622,7 +622,7 @@ termio_link_get(const Evas_Object *obj,
{
// TODO: decode string: %XX -> char
link = link + sizeof("file://") - 1;
/* Handle cases where / is ommitted: file://HOSTNAME/home/ */
/* Handle cases where / is omitted: file://HOSTNAME/home/ */
if (link[0] != '/')
{
link = strchr(link, '/');

View File

@ -88,7 +88,7 @@ termio_selection_get(Termio *sd,
if (cells[x].att.tab_inserted)
{
/* There was a tab inserted.
* Only output it if there were spaces/empty cells "bellow"
* Only output it if there were spaces/empty cells "below"
*/
Eina_Bool is_tab = EINA_TRUE;
while ((is_tab) && (x < end_x))

View File

@ -67,7 +67,7 @@ termpty_can_handle_key(const Termpty *ty,
const Keys_Handler *khdl,
const Evas_Event_Key_Down *ev)
{
// if term app asked for kbd lock - dont handle here
// if term app asked for kbd lock - don't handle here
if (ty->termstate.kbd_lock)
return EINA_FALSE;
// if app asked us to not do autorepeat - ignore press if is it is the same

View File

@ -468,7 +468,7 @@ _handle_esc_csi_reset_mode(Termpty *ty, Eina_Unicode cc, Eina_Unicode *b,
else ty->mouse_mode = MOUSE_OFF;
DBG("set mouse (press+release+all motion) %i", mode);
break;
case 1004: // i dont know what focus reporting is?
case 1004: // I don't know what focus reporting is?
WRN("TODO: enable focus reporting %i", mode);
ty->decoding_error = EINA_TRUE;
break;

View File

@ -180,7 +180,7 @@ handle_edje(char *rp)
o = edje_object_add(evas);
if (edje_object_file_set
(o, rp, "terminology/backgroud") == EINA_TRUE ||
(o, rp, "terminology/background") == EINA_TRUE ||
!edje_object_file_set
(o, rp, "e/desktop/background"))
{

View File

@ -449,7 +449,7 @@ const Cmatch dmatch[] =
{ 0, 0, 0, 0, 0, 0, NULL, NULL}
};
// for exectuable files
// for executable files
const Cmatch xmatch[] =
{
{ 5, 2, 0, 9, 9, 9, "*.sh", "text-x-script"},