From ade2c9ed520e20b7855b08df61077874e8d1d6c1 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Mon, 8 Jan 2018 21:24:25 +0900 Subject: [PATCH] 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(); };