cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6f8d017d9381e843e1756c60a4d23133c8e4e9a0
commit 6f8d017d9381e843e1756c60a4d23133c8e4e9a0 Author: Kateryna Fesyna <[email protected]> Date: Mon Jul 7 15:34:51 2014 +0200 edje: Edje_Edit - Change names of two functions to match the other sounds api Summary: This commit provides small cleanup for sounds api. The next functions are renamed: edje_edit_sounds_samples_list_get() -> edje_edit_sound_samples_list_get() edje_edit_sounds_tones_list_get() -> edje_edit_sound_tones_list_get() Reviewers: cedric, Hermet, seoz, raster, reutskiy.v.v CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D1134 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/edje/Edje_Edit.h | 4 ++-- src/lib/edje/edje_edit.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/edje/Edje_Edit.h b/src/lib/edje/Edje_Edit.h index cf97818..912a22b 100644 --- a/src/lib/edje/Edje_Edit.h +++ b/src/lib/edje/Edje_Edit.h @@ -4713,7 +4713,7 @@ EAPI Eina_Bool edje_edit_state_tween_del(Evas_Object *obj, const char *part, con * @return A List containing all sounds samples names found in the edje file. * @since 1.11 */ -EAPI Eina_List * edje_edit_sounds_samples_list_get(Evas_Object *obj); +EAPI Eina_List * edje_edit_sound_samples_list_get(Evas_Object *obj); /** Get the list of all the sounds tones in the given edje. * Use edje_edit_string_list_free() when you don't need the list anymore. @@ -4723,7 +4723,7 @@ EAPI Eina_List * edje_edit_sounds_samples_list_get(Evas_Object *obj); * @return A List containing all sounds tones names found in the edje file. * @since 1.11 */ -EAPI Eina_List * edje_edit_sounds_tones_list_get(Evas_Object *obj); +EAPI Eina_List * edje_edit_sound_tones_list_get(Evas_Object *obj); /** Add new sound sample to samples collection * diff --git a/src/lib/edje/edje_edit.c b/src/lib/edje/edje_edit.c index 6924b91..a8c2816 100644 --- a/src/lib/edje/edje_edit.c +++ b/src/lib/edje/edje_edit.c @@ -926,7 +926,7 @@ edje_edit_compiler_get(Evas_Object *obj) /****************/ EAPI Eina_List * -edje_edit_sounds_samples_list_get(Evas_Object *obj) +edje_edit_sound_samples_list_get(Evas_Object *obj) { Eina_List *sounds_samples = NULL; unsigned int i; @@ -944,7 +944,7 @@ edje_edit_sounds_samples_list_get(Evas_Object *obj) } EAPI Eina_List * -edje_edit_sounds_tones_list_get(Evas_Object *obj) +edje_edit_sound_tones_list_get(Evas_Object *obj) { Eina_List *sounds_tones = NULL; unsigned int i; --
