From 5ae7d92a1b05d5aba4e6b54345a72d9239b03b92 Mon Sep 17 00:00:00 2001 From: Bruno da Silva Belo Date: Mon, 30 Sep 2019 23:23:33 -0300 Subject: [PATCH] csharp: add since 1.23 to eina_accessor. Summary: updating to since 1.23. Reviewers: lauromoura, felipealmeida Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8293 Differential Revision: https://phab.enlightenment.org/D10257 --- src/bindings/mono/eina_mono/eina_accessor.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/bindings/mono/eina_mono/eina_accessor.cs b/src/bindings/mono/eina_mono/eina_accessor.cs index bafbbd84fe..6442c55961 100644 --- a/src/bindings/mono/eina_mono/eina_accessor.cs +++ b/src/bindings/mono/eina_mono/eina_accessor.cs @@ -18,7 +18,8 @@ internal class AccessorNativeFunctions eina_accessor_free(IntPtr accessor); } -/// Accessors provide an uniform way of accessing Eina containers, similar to C++ STL's and C# IEnumerable. +/// Accessors provide an uniform way of accessing Eina containers, +/// similar to C++ STL's and C# IEnumerable (SINCE EFL 1.23). public class Accessor : IEnumerable, IDisposable { /// Pointer to the native accessor. @@ -132,7 +133,7 @@ public class Accessor : IEnumerable, IDisposable } } -///Accessor for Inlists. +///Accessor for Inlists (SINCE EFL 1.23). public class AccessorInList : Accessor { /// Create a new accessor wrapping the given pointer. @@ -152,7 +153,7 @@ public class AccessorInList : Accessor } } -///Accessor for Inarrays. +///Accessor for Inarrays (SINCE EFL 1.23). public class AccessorInArray : Accessor { /// Create a new accessor wrapping the given pointer.