diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2020-01-29 10:23:08 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2020-01-29 10:23:08 +0100 |
commit | 594f00c815d8ee15878071b23f041e5092abe7c2 (patch) | |
tree | f2d3018eedb9416c58e370803d917c1808aac569 /src/tests/efl_mono | |
parent | 5eb7ae8b586af4dccfc267a9b773ecf1d0ee75bd (diff) | |
download | efl-594f00c815d8ee15878071b23f041e5092abe7c2.tar.gz |
mono-test: Fix build break
Recent 6b110e578d24b2a99c4c1b158433327a0a43ce1a forbids list<> in
stable contexts.
Diffstat (limited to 'src/tests/efl_mono')
-rw-r--r-- | src/tests/efl_mono/dummy_child.eo | 2 | ||||
-rw-r--r-- | src/tests/efl_mono/dummy_inherit_helper.eo | 2 | ||||
-rw-r--r-- | src/tests/efl_mono/dummy_part_holder.eo | 2 | ||||
-rw-r--r-- | src/tests/efl_mono/dummy_test_object.eo | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/efl_mono/dummy_child.eo b/src/tests/efl_mono/dummy_child.eo index f6de361c45..e2218f1926 100644 --- a/src/tests/efl_mono/dummy_child.eo +++ b/src/tests/efl_mono/dummy_child.eo @@ -1,6 +1,6 @@ import eina_types; -class Dummy.Child extends Dummy.Test_Object { +class @beta Dummy.Child extends Dummy.Test_Object { methods { double_params { diff --git a/src/tests/efl_mono/dummy_inherit_helper.eo b/src/tests/efl_mono/dummy_inherit_helper.eo index f0f9183ebb..e28cdb7812 100644 --- a/src/tests/efl_mono/dummy_inherit_helper.eo +++ b/src/tests/efl_mono/dummy_inherit_helper.eo @@ -1,4 +1,4 @@ -class Dummy.Inherit_Helper extends Efl.Object +class @beta Dummy.Inherit_Helper extends Efl.Object { methods { receive_dummy_and_call_int_out @static { diff --git a/src/tests/efl_mono/dummy_part_holder.eo b/src/tests/efl_mono/dummy_part_holder.eo index 1ac88007fc..b95f1a5cdc 100644 --- a/src/tests/efl_mono/dummy_part_holder.eo +++ b/src/tests/efl_mono/dummy_part_holder.eo @@ -1,6 +1,6 @@ import eina_types; -class Dummy.Part_Holder extends Dummy.Test_Object implements Efl.Part { +class @beta Dummy.Part_Holder extends Dummy.Test_Object implements Efl.Part { parts { one: Dummy.Test_Object; [[ Part number one. ]] diff --git a/src/tests/efl_mono/dummy_test_object.eo b/src/tests/efl_mono/dummy_test_object.eo index ee24e5ef9b..146438dd12 100644 --- a/src/tests/efl_mono/dummy_test_object.eo +++ b/src/tests/efl_mono/dummy_test_object.eo @@ -100,7 +100,7 @@ function Dummy.FormatCb { } }; -class Dummy.Test_Object extends Efl.Object implements Dummy.Test_Iface { +class @beta Dummy.Test_Object extends Efl.Object implements Dummy.Test_Iface { [[ Simple test class @since 1.23 ]] |