summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2019-12-04 18:22:25 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2019-12-04 18:22:25 +0100
commitb04a7ed4f4d031ef92d028b5fe84ec9150da2e15 (patch)
treed45a2c5d287c9fecde53dd95bade481c1578b4ee
parent76fa7184a4a4568dabdd76fa44e287415c18c11f (diff)
downloadefl-b04a7ed4f4d031ef92d028b5fe84ec9150da2e15.tar.gz
code comments: annoying typos
-rw-r--r--src/lib/elementary/efl_ui_view_model.c2
-rw-r--r--src/lib/elementary/efl_ui_view_model.eo4
-rw-r--r--src/lib/elementary/efl_ui_widget.c2
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<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;
}
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);