diff options
author | Lauro Moura <lauromoura@expertisesolutions.com.br> | 2018-05-03 01:02:11 -0300 |
---|---|---|
committer | Lauro Moura <lauromoura@expertisesolutions.com.br> | 2018-05-03 18:04:41 -0300 |
commit | 93d75b47c91123dec160efde623f7a49cf80c76c (patch) | |
tree | 6441d960da981cf72120343b8cff6f45bc6de040 /unsorted/efl_mono/EoInherit01.cs | |
parent | 4eebe1b884272bdbe60c96c6ceb6cf3b7423b0b5 (diff) |
efl_mono: Update tests and examples after rename
Summary:
Separated from the generator and libs for easier review
Depends on D6050
Reviewers: felipealmeida, vitor.sousa
Reviewed By: vitor.sousa
Subscribers: cedric
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D6051
Diffstat (limited to 'unsorted/efl_mono/EoInherit01.cs')
-rw-r--r-- | unsorted/efl_mono/EoInherit01.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unsorted/efl_mono/EoInherit01.cs b/unsorted/efl_mono/EoInherit01.cs index 17ea4df2..cf35ca5f 100644 --- a/unsorted/efl_mono/EoInherit01.cs +++ b/unsorted/efl_mono/EoInherit01.cs | |||
@@ -2,7 +2,7 @@ using static System.Console; | |||
2 | 2 | ||
3 | class PlusTenNumberWrapper : example.NumberwrapperInherit | 3 | class PlusTenNumberWrapper : example.NumberwrapperInherit |
4 | { | 4 | { |
5 | public PlusTenNumberWrapper(efl.Object parent = null) | 5 | public PlusTenNumberWrapper(efl.IObject parent = null) |
6 | : base(parent) | 6 | : base(parent) |
7 | {} | 7 | {} |
8 | 8 | ||
@@ -52,7 +52,7 @@ public class ExampleEoInherit01 | |||
52 | WriteLine("## Using original object ##\n"); | 52 | WriteLine("## Using original object ##\n"); |
53 | 53 | ||
54 | // Check original EFL object | 54 | // Check original EFL object |
55 | var origObj = new example.NumberwrapperConcrete(); | 55 | var origObj = new example.Numberwrapper(); |
56 | given = 111; | 56 | given = 111; |
57 | origObj.SetNumber(given); | 57 | origObj.SetNumber(given); |
58 | stored = origObj.GetNumber(); | 58 | stored = origObj.GetNumber(); |