ecore: use restartable event for main loop event.

This commit is contained in:
Cedric BAIL 2016-04-20 15:54:18 -07:00
parent c0bce3e23e
commit 54126d8fa5
1 changed files with 3 additions and 3 deletions

View File

@ -51,9 +51,9 @@ class Ecore_Mainloop (Eo.Base)
}
}
events {
idle,enter; [[Event occurs once the main loop enters the idle state.]]
idle,exit; [[Event occurs once the main loop exits the idle state.]]
idle; /* FIXME: We need to make sure we can get it work. */
idle,enter @restart; [[Event occurs once the main loop enters the idle state.]]
idle,exit @restart; [[Event occurs once the main loop exits the idle state.]]
idle @restart; /* FIXME: We need to make sure we can get it work. */
/* TODO: All of the legacy ecore events. (Ecore.h header) */
}
}