From 7291c684fbb401e71544a294952cc4fc3864457d Mon Sep 17 00:00:00 2001 From: Lauro Moura Date: Fri, 30 Aug 2019 14:33:28 +0900 Subject: [PATCH] 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 { /// /// /// -public class ItemFactory : Efl.Ui.CachingFactory, IDisposable +public class ItemFactory : Efl.Ui.LayoutFactory, IDisposable { /// Creates a new factory. public ItemFactory(Efl.Object parent = null)