elementary - fixed typo

This commit is contained in:
ChunEon Park 2013-03-06 21:34:44 +09:00
parent 30ce1cf732
commit 90b4c2c8dc
1 changed files with 2 additions and 2 deletions

View File

@ -341,7 +341,7 @@ EAPI void elm_object_signal_emit(Evas_Object *obj, const char *emission,
* @param source The signal's source. * @param source The signal's source.
* @param func The callback function to be executed when the signal is * @param func The callback function to be executed when the signal is
* emitted. * emitted.
* @param data A pointer to data to pass in to the callback function. * @param data A pointer to data to pass to the callback function.
* @ingroup General * @ingroup General
*/ */
EAPI void elm_object_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func, void *data); EAPI void elm_object_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func, void *data);
@ -358,7 +358,7 @@ EAPI void elm_object_signal_callback_add(Evas_Object *obj, const char *e
* errors. * errors.
* *
* This function removes the @b last callback, previously attached to * This function removes the @b last callback, previously attached to
* a signal emitted by an undelying Edje object of @a obj, whose * a signal emitted by an underlying Edje object of @a obj, whose
* parameters @a emission, @a source and @c func match exactly with * parameters @a emission, @a source and @c func match exactly with
* those passed to a previous call to * those passed to a previous call to
* elm_object_signal_callback_add(). The data pointer that was passed * elm_object_signal_callback_add(). The data pointer that was passed