docs: add method parameter descriptions for ecore_idle_*

Now that we support these in docgen catch up in some example EO files.
This commit is contained in:
Stefan Schmidt 2016-04-14 17:10:49 +02:00
parent f9189fea78
commit 3c93a3268c
2 changed files with 6 additions and 6 deletions

View File

@ -12,16 +12,16 @@ class Ecore.Idle.Enterer (Eo.Base)
[[This constructor will insert the handler at the beginning of the list.]]
legacy: null;
params {
@in func: Ecore_Task_Cb;
@in data: const(void)*;
@in func: Ecore_Task_Cb; [[Idle enterer callback function.]]
@in data: const(void)*; [[Private data passed to callback functions.]]
}
}
after_constructor {
[[This constructor will insert the handler at the end of the list.]]
legacy: null;
params {
@in func: Ecore_Task_Cb;
@in data: const(void)*;
@in func: Ecore_Task_Cb; [[Idle enterer callback function.]]
@in data: const(void)*; [[Private data passed to callback functions.]]
}
}
}

View File

@ -10,8 +10,8 @@ class Ecore.Idle.Exiter (Eo.Base)
[[Constructor.]]
legacy: null;
params {
@in func: Ecore_Task_Cb;
@in data: const(void)*;
@in func: Ecore_Task_Cb; [[Idle exiter callback function.]]
@in data: const(void)*; [[Private data passed to callback functions.]]
}
}
}