diff options
author | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2019-09-02 21:41:20 +0900 |
---|---|---|
committer | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2019-09-02 21:41:20 +0900 |
commit | 595a0c0b2f528b4569385d208c2b4807e2a7e818 (patch) | |
tree | 3d2086e2b859922a51736a02c263a1fd09244bd8 /src/examples/elementary | |
parent | b7bab9aa8e70fee0c44411746e6955c14cd9701a (diff) | |
download | efl-595a0c0b2f528b4569385d208c2b4807e2a7e818.tar.gz |
Revert "eolian_mono: remove underscore of Evt_Args"
This reverts commit ac99e2ac9410d5b2ef6225fa1aaaf9ffcd6578fb.
This patch is reverted because D9692 covers this patch.
Diffstat (limited to 'src/examples/elementary')
-rw-r--r-- | src/examples/elementary/efl_ui_unit_converter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/elementary/efl_ui_unit_converter.cs b/src/examples/elementary/efl_ui_unit_converter.cs index 88c0be499f..3460af3f5f 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.AlertPopupButton.Positive, "Ok", null); popup.SetSize(new Eina.Size2D(150, 30)); - popup.ButtonClickedEvt += (object sender, Efl.Ui.AlertPopupButtonClickedEvtArgs e) => { + popup.ButtonClickedEvt += (object sender, Efl.Ui.AlertPopupButtonClickedEvt_Args e) => { popup.SetParent(null); popup.Invalidate(); }; |