summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauro Moura <lauromoura@expertisesolutions.com.br>2019-08-30 14:33:28 +0900
committerSangHyeon Jade Lee <sh10233.lee@samsung.com>2019-08-30 15:08:53 +0900
commit7291c684fbb401e71544a294952cc4fc3864457d (patch)
tree47292cc089ceb2dcecfc19acf199576e8a220127
parente4b9807ee3e7b0feb4d80b80d112bf838f49dbd0 (diff)
downloadefl-7291c684fbb401e71544a294952cc4fc3864457d.tar.gz
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
-rw-r--r--src/bindings/mono/efl_mono/Factory.cs2
1 files changed, 1 insertions, 1 deletions
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)