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
This commit is contained in:
Lauro Moura 2019-08-30 14:33:28 +09:00 committed by SangHyeon Jade Lee
parent e4b9807ee3
commit 7291c684fb
1 changed files with 1 additions and 1 deletions

View File

@ -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)