mono: update window construction

they simply missed parameters here

Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Differential Revision: https://phab.enlightenment.org/D11954
This commit is contained in:
Marcel Hollerbach 2020-06-09 12:09:25 +02:00
parent 29c491b977
commit 4f6a086f6a
2 changed files with 3 additions and 3 deletions

View File

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

View File

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