lauromoura pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=902ea935e4df7115a5b0577053045a8581b56e5e
commit 902ea935e4df7115a5b0577053045a8581b56e5e Author: Bruno da Silva Belo <[email protected]> Date: Mon Oct 14 18:01:30 2019 -0300 csharp: updating Factory docs. Summary: ref T8345 Reviewers: lauromoura, felipealmeida, segfaultxavi, woohyun Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8345 Differential Revision: https://phab.enlightenment.org/D10375 --- src/bindings/mono/efl_mono/Factory.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/bindings/mono/efl_mono/Factory.cs b/src/bindings/mono/efl_mono/Factory.cs index 2c9f139ca7..be429fd12a 100644 --- a/src/bindings/mono/efl_mono/Factory.cs +++ b/src/bindings/mono/efl_mono/Factory.cs @@ -14,13 +14,12 @@ namespace Efl { namespace Ui { /// var factory = Efl.Ui.Factory<Efl.Ui.Button>(); /// factory.Style().Bind("Name"); // The factory Style property is bound to the Name property for the given model. /// </code> -/// -/// Since EFL 1.23. -/// /// </summary> public class ItemFactory<T> : Efl.Ui.LayoutFactory, IDisposable { - /// <summary>Creates a new factory.</summary> + /// <summary>Creates a new factory. + /// </summary> + /// <param name="parent">The parent of the factory.</param> public ItemFactory(Efl.Object parent = null) : base (parent, typeof(T)) { --
