code comments: annoying typos

This commit is contained in:
Xavi Artigas 2019-12-04 18:22:25 +01:00
parent 76fa7184a4
commit b04a7ed4f4
3 changed files with 4 additions and 4 deletions

View File

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

View File

@ -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<string> @move; [[Iterator of property name to bind with this defined property see
@.property_bind.]]
bound: iterator<string> @move; [[Iterator of property name to bind with this defined property see
@.property_bind.]]
}
return: Eina.Error;
}

View File

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