stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f9189fea78ba638c81124fcdf4d1612139d6e913

commit f9189fea78ba638c81124fcdf4d1612139d6e913
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Thu Apr 14 17:10:05 2016 +0200

    docs: add class and method parameter descriptions to ecore_idler class
---
 src/lib/ecore/ecore_idler.eo | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore/ecore_idler.eo b/src/lib/ecore/ecore_idler.eo
index 1197baa..bf25d4a 100644
--- a/src/lib/ecore/ecore_idler.eo
+++ b/src/lib/ecore/ecore_idler.eo
@@ -2,14 +2,19 @@ import ecore_types;
 
 class Ecore.Idler (Eo.Base)
 {
+   [[Setup callbacks to be called when the program is in idle state.
+
+   Once the mainloop has called all enterer handlers it calls the registered
+   idler callbacks.
+   ]]
    eo_prefix: ecore_idler;
    methods {
       constructor {
          [[Constructor.]]
          legacy: null;
          params {
-            @in func: Ecore_Task_Cb;
-            @in data: const(void)*;
+            @in func: Ecore_Task_Cb; [[Idler callback function.]]
+            @in data: const(void)*; [[Private data passed to callback 
functions.]]
          }
       }
    }

-- 


Reply via email to