From 2c8baa76f1c4dfaf36cc0d26cd0a979b75349f2b Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Mon, 22 Jun 2020 18:21:01 +0000 Subject: [PATCH] Fix typos - (Part #3) Fix some typos Reviewed-by: Stefan Schmidt Differential Revision: https://phab.enlightenment.org/D12017 --- old/ChangeLog.eet | 2 +- old/ChangeLog.evas | 4 ++-- old/NEWS.evas | 2 +- src/bindings/mono/eina_mono/eina_stringshare.cs | 10 +++++----- src/lib/elementary/efl_ui_collection.c | 6 +++--- src/lib/elementary/efl_ui_collection_view.c | 2 +- src/lib/elementary/efl_ui_select_model.c | 6 +++--- src/lib/elementary/elm_general.h | 2 +- src/lib/elementary/elm_map_common.h | 2 +- src/lib/elementary/elm_toolbar.c | 2 +- .../evas/common/evas_scale_smooth_scaler_downx_downy.c | 2 +- .../evas/image_loaders/png/evas_image_load_png.c | 2 +- 12 files changed, 21 insertions(+), 21 deletions(-) diff --git a/old/ChangeLog.eet b/old/ChangeLog.eet index 1f29bdac31..e90308bd77 100644 --- a/old/ChangeLog.eet +++ b/old/ChangeLog.eet @@ -544,7 +544,7 @@ 2011-11-16 Carsten Haitzler (The Rasterman) * JPEG encode and decode in eet now uses ISLOW (not IFAST) due to - noticable quality losses in the chase for speed. It will use + noticeable quality losses in the chase for speed. It will use IFAST for quality less than 60 when encoding 2011-12-02 Carsten Haitzler (The Rasterman) diff --git a/old/ChangeLog.evas b/old/ChangeLog.evas index 4b81090e92..0b9a353652 100644 --- a/old/ChangeLog.evas +++ b/old/ChangeLog.evas @@ -502,7 +502,7 @@ 2011-11-16 Carsten Haitzler (The Rasterman) * JPEG encode and decode in eet now uses ISLOW (not IFAST) due to - noticable quality losses in the chase for speed. It will use + noticeable quality losses in the chase for speed. It will use IFAST for quality less than 60 when encoding 2011-11-20 Carsten Haitzler (The Rasterman) @@ -808,7 +808,7 @@ 2012-06-14 Cedric Bail - * Cache convertion from Evas_Map to RGBA_Map. + * Cache conversion from Evas_Map to RGBA_Map. 2012-06-15 Vincent Torri diff --git a/old/NEWS.evas b/old/NEWS.evas index 3cc32ad5fa..cdb93ca51a 100644 --- a/old/NEWS.evas +++ b/old/NEWS.evas @@ -60,7 +60,7 @@ Improvements: * Reduce cost of propagating event by limiting the object we explore by using a bouncing box. * Don't wake up prepare thread if there is nothing to prepare. * Limit the updated region to fit in CPU cache for Pipe rendering. - * Cache convertion from Evas_Map to RGBA_Map. + * Cache conversion from Evas_Map to RGBA_Map. * evas_object_smart_members_get() now returns NULL on non-smart objects. * Pipeline rendering use prepare stage more extensively. * Properly warn when user try to link object from different canvas. diff --git a/src/bindings/mono/eina_mono/eina_stringshare.cs b/src/bindings/mono/eina_mono/eina_stringshare.cs index 58656fe8ca..741817294d 100644 --- a/src/bindings/mono/eina_mono/eina_stringshare.cs +++ b/src/bindings/mono/eina_mono/eina_stringshare.cs @@ -69,7 +69,7 @@ public class Stringshare : IEquatable, IEquatable /// /// Main constructor. Wrap the given string. /// Have private acess to avoid wrapping a null reference, - /// use convertion or the factory method to create a new instance. + /// use conversion or the factory method to create a new instance. /// Since EFL 1.23. /// /// @@ -108,7 +108,7 @@ public class Stringshare : IEquatable, IEquatable } /// - /// Implicit convertion to string. + /// Implicit conversion to string. /// public static implicit operator string(Stringshare ss) { @@ -121,12 +121,12 @@ public class Stringshare : IEquatable, IEquatable } /// - /// Implicit convertion from string to Stringshare. + /// Implicit conversion from string to Stringshare. /// Since EFL 1.23. /// /// /// Note that this method can be used to create an instance of this class, - /// either via an explicit cast or an implicit convertion. + /// either via an explicit cast or an implicit conversion. /// /// public static implicit operator Stringshare(string s) @@ -145,7 +145,7 @@ public class Stringshare : IEquatable, IEquatable /// /// /// Note that this method can be used to create an instance of this class, - /// either via an explicit cast or an implicit convertion. + /// either via an explicit cast or an implicit conversion. /// /// public static Stringshare FromString(string s) => s; diff --git a/src/lib/elementary/efl_ui_collection.c b/src/lib/elementary/efl_ui_collection.c index b6f96ba2da..bd3123a70f 100644 --- a/src/lib/elementary/efl_ui_collection.c +++ b/src/lib/elementary/efl_ui_collection.c @@ -86,7 +86,7 @@ static void _fast_accessor_init(Fast_Accessor *accessor, Eina_List **items) { //this is the accessor for accessing the items - //we have to workarround here the problem that + //we have to workaround here the problem that //no accessor can be created for a not yet created list. accessor->items = items; } @@ -239,7 +239,7 @@ _item_scroll_internal(Eo *obj EINA_UNUSED, ipos.x = ipos.x + vpos.x - view.x; ipos.y = ipos.y + vpos.y - view.y; - //FIXME scrollable needs some sort of align, the docs do not even garantee to completly move in the element + //FIXME scrollable needs some sort of align, the docs do not even garantee to completely move in the element efl_ui_scrollable_scroll(pd->smanager, ipos, anim); } @@ -569,7 +569,7 @@ _selection_changed(void *data, const Efl_Event *ev) Efl_Ui_Selection *fallback; //if this is the highest call in the tree of selection changes, safe the fallback and apply it later - //this way we ensure that we are not accidently adding fallback even if we just want to have a empty selection list + //this way we ensure that we are not accidentally adding fallback even if we just want to have a empty selection list fallback = pd->fallback; pd->fallback = NULL; diff --git a/src/lib/elementary/efl_ui_collection_view.c b/src/lib/elementary/efl_ui_collection_view.c index 433f5d3511..7eb6fe42d1 100644 --- a/src/lib/elementary/efl_ui_collection_view.c +++ b/src/lib/elementary/efl_ui_collection_view.c @@ -1685,7 +1685,7 @@ _item_scroll_internal(Eo *obj EINA_UNUSED, ipos.x = ipos.x + vpos.x - view.x; ipos.y = ipos.y + vpos.y - view.y; - //FIXME scrollable needs some sort of align, the docs do not even garantee to completly move in the element + //FIXME scrollable needs some sort of align, the docs do not even garantee to completely move in the element efl_ui_scrollable_scroll(pd->scroller, ipos, anim); } diff --git a/src/lib/elementary/efl_ui_select_model.c b/src/lib/elementary/efl_ui_select_model.c index fde6cca4c7..683b6b2206 100644 --- a/src/lib/elementary/efl_ui_select_model.c +++ b/src/lib/elementary/efl_ui_select_model.c @@ -2,7 +2,7 @@ # include #endif -// Note: we do not rely on reflection here to implement select as it require to asynchronously acces +// Note: we do not rely on reflection here to implement select as it require to asynchronously access // children. Could be done differently by implementing the children select in the parent instead of // in the children. For later optimization. @@ -543,7 +543,7 @@ _efl_ui_select_model_efl_ui_multi_selectable_all_select(Eo *obj, unsigned int count, i; // Not the fastest way to implement it, but will reuse more code and be easier as a v1. - // It also make it not very async which could be noticable. + // It also make it not very async which could be noticeable. count = efl_model_children_count_get(obj); for (i = 0; i < count; i++) @@ -573,7 +573,7 @@ _efl_ui_select_model_efl_ui_multi_selectable_index_range_ndx_range_select(Eo *ob unsigned long count, i; // Not the fastest way to implement it, but will reuse more code and be easier as a v1. - // It also make it not very async which could be noticable. + // It also make it not very async which could be noticeable. count = MIN(efl_model_children_count_get(obj), b + 1); for (i = a; i < count; i++) diff --git a/src/lib/elementary/elm_general.h b/src/lib/elementary/elm_general.h index 84d7e49e79..6624d9ecd1 100644 --- a/src/lib/elementary/elm_general.h +++ b/src/lib/elementary/elm_general.h @@ -291,7 +291,7 @@ typedef enum typedef enum { ELM_OBJECT_MULTI_SELECT_MODE_DEFAULT = 0, /**< default multiple select mode */ - ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL, /**< disallow mutiple selection + ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL, /**< disallow multiple selection * when clicked without control * key pressed */ ELM_OBJECT_MULTI_SELECT_MODE_MAX /**< canary value: any value greater or equal diff --git a/src/lib/elementary/elm_map_common.h b/src/lib/elementary/elm_map_common.h index 13166d366b..72443e7dc9 100644 --- a/src/lib/elementary/elm_map_common.h +++ b/src/lib/elementary/elm_map_common.h @@ -473,7 +473,7 @@ EAPI int elm_map_overlay_class_zoom_max_get(const Elm_Map_Over * * You can change the state (hidden, paused, etc.) or set the content * or icon of the group overlays by changing the state of the class overlay. - * Do not modifty the group overlay itself. + * Do not modify the group overlay itself. * * @see elm_map_overlay_class_add() */ diff --git a/src/lib/elementary/elm_toolbar.c b/src/lib/elementary/elm_toolbar.c index 77b38f5ffe..18ed5fc6d9 100644 --- a/src/lib/elementary/elm_toolbar.c +++ b/src/lib/elementary/elm_toolbar.c @@ -127,7 +127,7 @@ _items_visibility_fix(Elm_Toolbar *obj, evas_object_geometry_get(VIEW(it), NULL, NULL, &ciw, &cih); if (!efl_ui_layout_orientation_is_horizontal(sd->dir, EINA_TRUE)) *iw += cih; else *iw += ciw; - //expand is the case where the bx_more stuff is used and the prio.visible is completly ignored. + //expand is the case where the bx_more stuff is used and the prio.visible is completely ignored. //if this is the case - then every item in there is just visible in the box - nothing (beside the items in the other box is hidden) if (!usage_bx_more) { diff --git a/src/lib/evas/common/evas_scale_smooth_scaler_downx_downy.c b/src/lib/evas/common/evas_scale_smooth_scaler_downx_downy.c index dfe0e5dc31..07ca8b0abf 100644 --- a/src/lib/evas/common/evas_scale_smooth_scaler_downx_downy.c +++ b/src/lib/evas/common/evas_scale_smooth_scaler_downx_downy.c @@ -17,7 +17,7 @@ #ifdef BILINEAR_HALF_TO_FULL_SCALE if (// image is not too big so that cululative error on steps might be - // noticable + // noticeable (dst_region_w <= 4096) && (dst_region_h <= 4096) && (src_region_w <= 4096) && diff --git a/src/modules/evas/image_loaders/png/evas_image_load_png.c b/src/modules/evas/image_loaders/png/evas_image_load_png.c index 0558c3e9cf..ce55916b0e 100644 --- a/src/modules/evas/image_loaders/png/evas_image_load_png.c +++ b/src/modules/evas/image_loaders/png/evas_image_load_png.c @@ -519,7 +519,7 @@ evas_image_load_file_head_with_data_png(void *loader_data, memcpy(&prop->content, &optional_content, sizeof (Eina_Rectangle)); // Check that the limit of our content zone are correct - // This could be handled as an incorrect file completly, + // This could be handled as an incorrect file completely, // but let's try to recover if (prop->content.x == 0 || prop->content.y == 0) {