jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ade2c9ed520e20b7855b08df61077874e8d1d6c1
commit ade2c9ed520e20b7855b08df61077874e8d1d6c1 Author: Jean-Philippe Andre <[email protected]> Date: Mon Jan 8 21:24:25 2018 +0900 csharp: Fix an example Event name changed. The definition of the type BUTTON_CLICKED_Args seems odd as it's in efl.ui namespace directly. --- src/examples/elementary/efl_ui_unit_converter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/elementary/efl_ui_unit_converter.cs b/src/examples/elementary/efl_ui_unit_converter.cs index f167e68ca2..9e14c4b6c0 100644 --- a/src/examples/elementary/efl_ui_unit_converter.cs +++ b/src/examples/elementary/efl_ui_unit_converter.cs @@ -23,7 +23,7 @@ public class Example popup.SetVisible(true); popup.SetButton(efl.ui.popup_alert.Button.Positive, "Ok"); popup.SetSize(150, 30); - popup.CLICKED += (object sender, efl.ui.CLICKED_Args e) => { + popup.BUTTON_CLICKED += (object sender, efl.ui.BUTTON_CLICKED_Args e) => { popup.SetParent(null); popup.Del(); }; --
