stefan pushed a commit to branch master.

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

commit 89d63475ae486923e687ecb1c0b03725683fa6fc
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Wed Apr 13 16:56:47 2016 +0200

    docs: add descriptions and and more to ecore.idle classes
---
 src/lib/ecore/ecore_idle_enterer.eo | 8 ++++++--
 src/lib/ecore/ecore_idle_exiter.eo  | 2 ++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore/ecore_idle_enterer.eo 
b/src/lib/ecore/ecore_idle_enterer.eo
index 2cdc1c8..3250fb5 100644
--- a/src/lib/ecore/ecore_idle_enterer.eo
+++ b/src/lib/ecore/ecore_idle_enterer.eo
@@ -2,10 +2,14 @@ import ecore_types;
 
 class Ecore.Idle.Enterer (Eo.Base)
 {
+   [[Setup callbacks to be called when the program enters the idle state.
+
+   Enterer callbacks are good for updating your program's state, if it has a 
state engine.
+   ]]
    eo_prefix: ecore_idle_enterer;
    methods {
       before_constructor {
-         [[Contructor. Will insert the handler at the beginning of the list.]]
+         [[This constructor will insert the handler at the beginning of the 
list.]]
          legacy: null;
          params {
             @in func: Ecore_Task_Cb;
@@ -13,7 +17,7 @@ class Ecore.Idle.Enterer (Eo.Base)
          }
       }
       after_constructor {
-         [[Contructor. Will insert the handler at the end of the list.]]
+         [[This constructor will insert the handler at the end of the list.]]
          legacy: null;
          params {
             @in func: Ecore_Task_Cb;
diff --git a/src/lib/ecore/ecore_idle_exiter.eo 
b/src/lib/ecore/ecore_idle_exiter.eo
index dcd5b6b..46e76ca 100644
--- a/src/lib/ecore/ecore_idle_exiter.eo
+++ b/src/lib/ecore/ecore_idle_exiter.eo
@@ -2,6 +2,8 @@ import ecore_types;
 
 class Ecore.Idle.Exiter (Eo.Base)
 {
+   [[Setup callbacks to be called when the program exits the idle state.]]
+
    eo_prefix: ecore_idle_exiter;
    methods {
       constructor {

-- 


Reply via email to