summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2020-06-09 12:09:25 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-06-09 12:17:00 +0200
commit4f6a086f6ad9e0151e32930bafb6e85d5cb8f826 (patch)
tree07f589ff79ce14cdff906f912714ba232a2b1567
parent29c491b977543e9ef86147604ab3a297ece18327 (diff)
downloadefl-4f6a086f6ad9e0151e32930bafb6e85d5cb8f826.tar.gz
mono: update window construction
they simply missed parameters here Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org> Differential Revision: https://phab.enlightenment.org/D11954
-rw-r--r--src/tests/efl_mono/Model.cs2
-rw-r--r--src/tests/efl_mono/Parts.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/efl_mono/Model.cs b/src/tests/efl_mono/Model.cs
index f566b91d04..bdf30b341d 100644
--- a/src/tests/efl_mono/Model.cs
+++ b/src/tests/efl_mono/Model.cs
@@ -69,7 +69,7 @@ public static class TestModel {
{
string propertyBound = null;
bool callbackCalled = false;
- var parent = new Efl.Ui.Win(null);
+ var parent = new Efl.Ui.Win(null, "", "");
parent.Visible = false;
var factory = new Efl.Ui.ItemFactory<Efl.Ui.Button>(parent);
factory.PropertyBoundEvent += (object sender, Efl.Ui.PropertyBindPropertyBoundEventArgs args) => {
diff --git a/src/tests/efl_mono/Parts.cs b/src/tests/efl_mono/Parts.cs
index c5de896053..e33ce96918 100644
--- a/src/tests/efl_mono/Parts.cs
+++ b/src/tests/efl_mono/Parts.cs
@@ -61,7 +61,7 @@ public static class TestMVVMParts
{
public static void mvvm_dynamic_parts()
{
- var parent = new Efl.Ui.Win(null);
+ var parent = new Efl.Ui.Win(null, "", "");
parent.Visible = false;
var factory = new Efl.Ui.ItemFactory<Efl.Ui.ListDefaultItem>(parent);
@@ -75,7 +75,7 @@ public static class TestMVVMParts
public static void mvvm_factory_properties()
{
- var parent = new Efl.Ui.Win(null);
+ var parent = new Efl.Ui.Win(null, "", "");
parent.Visible = false;
var factory = new Efl.Ui.ItemFactory<Efl.Ui.ListDefaultItem>(parent);
var iconFactory = new Efl.Ui.ImageFactory(null);