seoz pushed a commit to branch master.

commit 01405605301f4fe569dea853cece6cda28dad150
Author: Daniel Juyung Seo <[email protected]>
Date:   Sun Mar 17 17:54:32 2013 +0900

    Ecore.h: use ECORE_CALLBACK_RENEW/CANCEL for timer callback.
---
 src/lib/ecore/Ecore.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/ecore/Ecore.h b/src/lib/ecore/Ecore.h
index a44fbef..6a5e3e3 100644
--- a/src/lib/ecore/Ecore.h
+++ b/src/lib/ecore/Ecore.h
@@ -197,7 +197,7 @@
  * timer_func(void *data)
  * {
  *    printf("Tick timer. Sec: %3.2f\n", ecore_time_get() - start_time);
- *    return 1;
+ *    return ECORE_CALLBACK_RENEW;
  * }
  *
  * int
@@ -1760,12 +1760,12 @@ EAPI double ecore_loop_time_get(void);
  * @code
  * Eina_Bool my_func(void *data) {
  *    do_funky_stuff_with_data(data);
- *    return EINA_TRUE;
+ *    return ECORE_CALLBACK_RENEW;
  * }
  * ecore_timer_add(interval_in_seconds, my_func, data_given_to_function);
  * @endcode
  * @note If the function was to be executed only once simply return
- * @c EINA_FALSE instead.
+ * @c ECORE_CALLBACK_CANCEL instead.
  *
  * An example that shows the usage of a lot of these:
  * @li @ref ecore_timer_example_c

-- 

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar

Reply via email to