summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_layout_factory.eo
diff options
context:
space:
mode:
authorSangHyeon Jade Lee <sh10233.lee@samsung.com>2019-01-31 11:59:19 +0000
committerCedric BAIL <cedric.bail@free.fr>2019-02-11 11:06:13 -0800
commit053146598c346aa7c200aee55093a5e463d255de (patch)
tree44c1acdd0761d0ed48a4ac70121d686504a24a4d /src/lib/elementary/efl_ui_layout_factory.eo
parent9277586fd8244826bdfbbc7625c3a08be71f5e06 (diff)
downloadefl-053146598c346aa7c200aee55093a5e463d255de.tar.gz
efl_ui : rename model connect and factory connect to bind property and factory.
As we discussed in T7469 with V40, efl_ui_model_connect efl_ui_factory_model_connect need to be renamed to efl_ui_bind_property efl_ui_bind_factory for this work, Efl.Ui.Model.Connect interface is changed as Efl.Ui.Bind, and bind_property and bind_factory both method is supported by this interface. bind_factory need Efl.Ui.Factory, and Efl.Ui.Factory inheritted Efl.Ui.Bind, so I little bit concerned about circular referencing, but so far, it works well. Reviewed-by: Cedric BAIL <cedric.bail@free.fr> Differential Revision: https://phab.enlightenment.org/D7529
Diffstat (limited to 'src/lib/elementary/efl_ui_layout_factory.eo')
-rw-r--r--src/lib/elementary/efl_ui_layout_factory.eo4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_layout_factory.eo b/src/lib/elementary/efl_ui_layout_factory.eo
index ea71e89a32..75ced32ed7 100644
--- a/src/lib/elementary/efl_ui_layout_factory.eo
+++ b/src/lib/elementary/efl_ui_layout_factory.eo
@@ -16,7 +16,7 @@ class Efl.Ui.Layout_Factory extends Efl.Ui.Caching_Factory
Efl.Object.constructor;
Efl.Object.destructor;
Efl.Ui.Factory.create;
- Efl.Ui.Factory.model_connect;
- Efl.Ui.Model.Connect.connect;
+ Efl.Ui.Property_Bind.property_bind;
+ Efl.Ui.Factory_Bind.factory_bind;
}
}