sanghyeonlee pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=7291c684fbb401e71544a294952cc4fc3864457d

commit 7291c684fbb401e71544a294952cc4fc3864457d
Author: Lauro Moura <lauromo...@expertisesolutions.com.br>
Date:   Fri Aug 30 14:33:28 2019 +0900

    csharp: Fix factory inheritance.
    
    Summary:
    C#'s factory must inherit from `LayoutFactory` so we can access its
    implementation of `FactoryBind`.
    
    Depends on D9759 to avoid test failure on PropertyBound events.
    
    Reviewers: felipealmeida, cedric, SanghyeonLee
    
    Reviewed By: SanghyeonLee
    
    Subscribers: #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D9760
---
 src/bindings/mono/efl_mono/Factory.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bindings/mono/efl_mono/Factory.cs 
b/src/bindings/mono/efl_mono/Factory.cs
index d3c9c13e6d..f2da0c299d 100644
--- a/src/bindings/mono/efl_mono/Factory.cs
+++ b/src/bindings/mono/efl_mono/Factory.cs
@@ -16,7 +16,7 @@ namespace Efl { namespace Ui {
 /// </code>
 ///
 /// </summary>
-public class ItemFactory<T> : Efl.Ui.CachingFactory, IDisposable
+public class ItemFactory<T> : Efl.Ui.LayoutFactory, IDisposable
 {
     /// <summary>Creates a new factory.</summary>
     public ItemFactory(Efl.Object parent = null)

-- 


Reply via email to