diff options
author | Sebastian Dransfeld <sd@tango.flipp.net> | 2009-11-08 20:27:12 +0000 |
---|---|---|
committer | Sebastian Dransfeld <sd@tango.flipp.net> | 2009-11-08 20:27:12 +0000 |
commit | f6b7273237ec9510f8c9e76fcb19b84cec70f5e1 (patch) | |
tree | e9b1a355e52aef6cab33aeeee50a466da37e5c01 /legacy/emotion/src/lib | |
parent | d650d089c43fb2a1b65d66060443e93f1b49c33f (diff) |
Remove use of deprecated event
XINE_EVENT_MRL_REFERENCE is deprecated, listen for
XINE_EVENT_MRL_REFERENCE_EXT.
SVN revision: 43540
Diffstat (limited to '')
-rw-r--r-- | legacy/emotion/src/lib/emotion_private.h | 2 | ||||
-rw-r--r-- | legacy/emotion/src/lib/emotion_smart.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/legacy/emotion/src/lib/emotion_private.h b/legacy/emotion/src/lib/emotion_private.h index d24a0b73b2..3d352a4742 100644 --- a/legacy/emotion/src/lib/emotion_private.h +++ b/legacy/emotion/src/lib/emotion_private.h | |||
@@ -115,7 +115,7 @@ EAPI void _emotion_audio_level_change(Evas_Object *obj); | |||
115 | EAPI void _emotion_channels_change(Evas_Object *obj); | 115 | EAPI void _emotion_channels_change(Evas_Object *obj); |
116 | EAPI void _emotion_title_set(Evas_Object *obj, char *title); | 116 | EAPI void _emotion_title_set(Evas_Object *obj, char *title); |
117 | EAPI void _emotion_progress_set(Evas_Object *obj, char *info, double stat); | 117 | EAPI void _emotion_progress_set(Evas_Object *obj, char *info, double stat); |
118 | EAPI void _emotion_file_ref_set(Evas_Object *obj, char *file, int num); | 118 | EAPI void _emotion_file_ref_set(Evas_Object *obj, const char *file, int num); |
119 | EAPI void _emotion_spu_button_num_set(Evas_Object *obj, int num); | 119 | EAPI void _emotion_spu_button_num_set(Evas_Object *obj, int num); |
120 | EAPI void _emotion_spu_button_set(Evas_Object *obj, int button); | 120 | EAPI void _emotion_spu_button_set(Evas_Object *obj, int button); |
121 | 121 | ||
diff --git a/legacy/emotion/src/lib/emotion_smart.c b/legacy/emotion/src/lib/emotion_smart.c index 9266b8dbab..71a60f3732 100644 --- a/legacy/emotion/src/lib/emotion_smart.c +++ b/legacy/emotion/src/lib/emotion_smart.c | |||
@@ -976,7 +976,7 @@ _emotion_progress_set(Evas_Object *obj, char *info, double stat) | |||
976 | } | 976 | } |
977 | 977 | ||
978 | EAPI void | 978 | EAPI void |
979 | _emotion_file_ref_set(Evas_Object *obj, char *file, int num) | 979 | _emotion_file_ref_set(Evas_Object *obj, const char *file, int num) |
980 | { | 980 | { |
981 | Smart_Data *sd; | 981 | Smart_Data *sd; |
982 | 982 | ||