diff options
Diffstat (limited to 'src/lib/ecore_audio')
-rw-r--r-- | src/lib/ecore_audio/Ecore_Audio.h | 4 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore_audio/Ecore_Audio.h b/src/lib/ecore_audio/Ecore_Audio.h index 56e137f..717c36c 100644 --- a/src/lib/ecore_audio/Ecore_Audio.h +++ b/src/lib/ecore_audio/Ecore_Audio.h | |||
@@ -200,14 +200,14 @@ EAPI int ecore_audio_shutdown(void); | |||
200 | * @since 1.8 | 200 | * @since 1.8 |
201 | * | 201 | * |
202 | */ | 202 | */ |
203 | EAPI const char* ecore_audio_obj_name_get(const Ecore_Audio_Object* obj); | 203 | EAPI const char* ecore_audio_obj_name_get(const Efl_Object* obj); |
204 | /** | 204 | /** |
205 | * @brief Name of the object | 205 | * @brief Name of the object |
206 | * | 206 | * |
207 | * @since 1.8 | 207 | * @since 1.8 |
208 | * | 208 | * |
209 | */ | 209 | */ |
210 | EAPI void ecore_audio_obj_name_set(Ecore_Audio_Object* obj, const char *name); | 210 | EAPI void ecore_audio_obj_name_set(Efl_Object* obj, const char *name); |
211 | 211 | ||
212 | #include <ecore_audio_obj.h> | 212 | #include <ecore_audio_obj.h> |
213 | #include <ecore_audio_obj_in.h> | 213 | #include <ecore_audio_obj_in.h> |
diff --git a/src/lib/ecore_audio/ecore_audio.c b/src/lib/ecore_audio/ecore_audio.c index 4683415..1c0345e 100644 --- a/src/lib/ecore_audio/ecore_audio.c +++ b/src/lib/ecore_audio/ecore_audio.c | |||
@@ -262,13 +262,13 @@ ecore_audio_sndfile_lib_unload(void) | |||
262 | 262 | ||
263 | 263 | ||
264 | EAPI const char* | 264 | EAPI const char* |
265 | ecore_audio_obj_name_get(const Ecore_Audio_Object* obj) | 265 | ecore_audio_obj_name_get(const Efl_Object* obj) |
266 | { | 266 | { |
267 | return efl_name_get(obj); | 267 | return efl_name_get(obj); |
268 | } | 268 | } |
269 | 269 | ||
270 | EAPI void | 270 | EAPI void |
271 | ecore_audio_obj_name_set(Ecore_Audio_Object* obj, const char *name) | 271 | ecore_audio_obj_name_set(Efl_Object* obj, const char *name) |
272 | { | 272 | { |
273 | efl_name_set(obj, name); | 273 | efl_name_set(obj, name); |
274 | } | 274 | } |