From b04a7ed4f4d031ef92d028b5fe84ec9150da2e15 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 4 Dec 2019 18:22:25 +0100 Subject: [PATCH] code comments: annoying typos --- src/lib/elementary/efl_ui_view_model.c | 2 +- src/lib/elementary/efl_ui_view_model.eo | 4 ++-- src/lib/elementary/efl_ui_widget.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/elementary/efl_ui_view_model.c b/src/lib/elementary/efl_ui_view_model.c index 0194e47a87..85e8e33694 100644 --- a/src/lib/elementary/efl_ui_view_model.c +++ b/src/lib/elementary/efl_ui_view_model.c @@ -30,7 +30,7 @@ struct _Efl_Ui_View_Model_Data Eina_Bool child_removed : 1; } propagating; // Boolean to prevent reentrance event emission on the same object Eina_Bool finalized : 1; - Eina_Bool children_bind : 1; // Define if child object should be automatically binded + Eina_Bool children_bind : 1; // Define if child object should be automatically bound }; struct _Efl_Ui_View_Model_Text diff --git a/src/lib/elementary/efl_ui_view_model.eo b/src/lib/elementary/efl_ui_view_model.eo index d5dcdbeaf8..6d07f8d101 100644 --- a/src/lib/elementary/efl_ui_view_model.eo +++ b/src/lib/elementary/efl_ui_view_model.eo @@ -76,8 +76,8 @@ class Efl.Ui.View_Model extends Efl.Composite_Model with the above property name.]] set: EflUiViewModelPropertySet; [[Define the set callback called when the @Efl.Model.property.set is called with the above property name.]] - binded: iterator @move; [[Iterator of property name to bind with this defined property see - @.property_bind.]] + bound: iterator @move; [[Iterator of property name to bind with this defined property see + @.property_bind.]] } return: Eina.Error; } diff --git a/src/lib/elementary/efl_ui_widget.c b/src/lib/elementary/efl_ui_widget.c index 96cecc68c7..370bf4e045 100644 --- a/src/lib/elementary/efl_ui_widget.c +++ b/src/lib/elementary/efl_ui_widget.c @@ -5981,7 +5981,7 @@ _efl_ui_property_bind(Eo *widget, Eo *target, Efl_Ui_Widget_Data *pd, { Efl_Ui_Property_Bound *prop; - // Always check for a model and fetch a provider in case a binded property + // Always check for a model and fetch a provider in case a bound property // is provided by a class down the hierarchy, but they still need to be notified // when a model change _efl_ui_widget_model_register(widget, pd);