xartigas pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e4a2e7cb555902a00dd89e4c019fe0253a59c979
commit e4a2e7cb555902a00dd89e4c019fe0253a59c979 Author: Xavi Artigas <[email protected]> Date: Fri Aug 2 14:03:26 2019 +0200 mono-docs: Add descriptions to event args Event args structs had fields without description (missing <value> tag). --- src/bin/eolian_mono/eolian/mono/events.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/eolian_mono/eolian/mono/events.hh b/src/bin/eolian_mono/eolian/mono/events.hh index 013b7d8702..503af677b8 100644 --- a/src/bin/eolian_mono/eolian/mono/events.hh +++ b/src/bin/eolian_mono/eolian/mono/events.hh @@ -253,6 +253,7 @@ struct event_argument_wrapper_generator << "[Efl.Eo.BindingEntity]\n" << "public class " << name_helpers::managed_event_args_short_name(evt) << " : EventArgs {\n" << scope_tab << "/// <summary>Actual event payload.</summary>\n" + << scope_tab << "/// <value>" << evt.documentation.summary << "</value>\n" << scope_tab << "public " << type << " arg { get; set; }\n" << "}\n" ).generate(sink, *etype, context); --
