diff options
author | Tom Hacohen <tom@stosb.com> | 2013-09-27 16:26:25 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2013-09-27 16:40:32 +0100 |
commit | 682c69764d8f7fc984d554e5d3ba5ab82916c15b (patch) | |
tree | dfb872f78f637222fff1873d4bc3a52f4cc56b7b /src/lib/ecore_audio | |
parent | 832fc5b5ced1e23b30028a6c69aa9b5dbc61557f (diff) |
Revert "eo: libs,test,benchmarks Eo_Class -> Eo"
This reverts commit 1714fe93f42d6950171d0ab9069bfb808a62fd31.
We actually want this type, it makes things clearer.
Conflicts:
src/tests/eo/function_overrides/function_overrides_inherit2.c
src/tests/eo/function_overrides/function_overrides_simple.c
src/tests/eo/suite/eo_test_class_simple.c
Diffstat (limited to 'src/lib/ecore_audio')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_tone.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_tone.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_pulse.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_pulse.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_obj.c b/src/lib/ecore_audio/ecore_audio_obj.c index 9bbc1d4ce2..83ddbe95e1 100644 --- a/src/lib/ecore_audio/ecore_audio_obj.c +++ b/src/lib/ecore_audio/ecore_audio_obj.c | |||
@@ -87,7 +87,7 @@ static void _constructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
87 | 87 | ||
88 | } | 88 | } |
89 | 89 | ||
90 | static void _class_constructor(Eo *klass) | 90 | static void _class_constructor(Eo_Class *klass) |
91 | { | 91 | { |
92 | const Eo_Op_Func_Description func_desc[] = { | 92 | const Eo_Op_Func_Description func_desc[] = { |
93 | /* Virtual functions of parent class implemented in this class */ | 93 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj.h b/src/lib/ecore_audio/ecore_audio_obj.h index 603aa96182..fc8d8ebb2f 100644 --- a/src/lib/ecore_audio/ecore_audio_obj.h +++ b/src/lib/ecore_audio/ecore_audio_obj.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo *ecore_audio_obj_class_get() EINA_CONST; | 44 | const Eo_Class *ecore_audio_obj_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in.c b/src/lib/ecore_audio/ecore_audio_obj_in.c index 9574cf17ef..1abaae4d09 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in.c +++ b/src/lib/ecore_audio/ecore_audio_obj_in.c | |||
@@ -251,7 +251,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
251 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 251 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
252 | } | 252 | } |
253 | 253 | ||
254 | static void _class_constructor(Eo *klass) | 254 | static void _class_constructor(Eo_Class *klass) |
255 | { | 255 | { |
256 | const Eo_Op_Func_Description func_desc[] = { | 256 | const Eo_Op_Func_Description func_desc[] = { |
257 | /* Virtual functions of parent class implemented in this class */ | 257 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in.h b/src/lib/ecore_audio/ecore_audio_obj_in.h index 080dac7b0f..b0b26eaafb 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in.h +++ b/src/lib/ecore_audio/ecore_audio_obj_in.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo *ecore_audio_obj_in_class_get() EINA_CONST; | 44 | const Eo_Class *ecore_audio_obj_in_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c index a8abbb1217..4799f6d676 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c +++ b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c | |||
@@ -253,7 +253,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
253 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 253 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
254 | } | 254 | } |
255 | 255 | ||
256 | static void _class_constructor(Eo *klass) | 256 | static void _class_constructor(Eo_Class *klass) |
257 | { | 257 | { |
258 | const Eo_Op_Func_Description func_desc[] = { | 258 | const Eo_Op_Func_Description func_desc[] = { |
259 | /* Virtual functions of parent class implemented in this class */ | 259 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h index 2ac034437a..9ed5e7d209 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h +++ b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo *ecore_audio_obj_in_sndfile_class_get() EINA_CONST; | 44 | const Eo_Class *ecore_audio_obj_in_sndfile_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_SNDFILE_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_SNDFILE_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_tone.c b/src/lib/ecore_audio/ecore_audio_obj_in_tone.c index 34a3f03992..f0fec98dcb 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_tone.c +++ b/src/lib/ecore_audio/ecore_audio_obj_in_tone.c | |||
@@ -149,7 +149,7 @@ static void _constructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
149 | obj->freq = 1000; | 149 | obj->freq = 1000; |
150 | } | 150 | } |
151 | 151 | ||
152 | static void _class_constructor(Eo *klass) | 152 | static void _class_constructor(Eo_Class *klass) |
153 | { | 153 | { |
154 | const Eo_Op_Func_Description func_desc[] = { | 154 | const Eo_Op_Func_Description func_desc[] = { |
155 | /* Virtual functions of parent class implemented in this class */ | 155 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_tone.h b/src/lib/ecore_audio/ecore_audio_obj_in_tone.h index 059142209c..13bd01645c 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_tone.h +++ b/src/lib/ecore_audio/ecore_audio_obj_in_tone.h | |||
@@ -48,7 +48,7 @@ extern "C" | |||
48 | * | 48 | * |
49 | * @return The Eo class ID | 49 | * @return The Eo class ID |
50 | */ | 50 | */ |
51 | const Eo *ecore_audio_obj_in_tone_class_get() EINA_CONST; | 51 | const Eo_Class *ecore_audio_obj_in_tone_class_get() EINA_CONST; |
52 | 52 | ||
53 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_TONE_BASE_ID; | 53 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_TONE_BASE_ID; |
54 | 54 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out.c b/src/lib/ecore_audio/ecore_audio_obj_out.c index 4834cce0cd..e3822efca3 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out.c +++ b/src/lib/ecore_audio/ecore_audio_obj_out.c | |||
@@ -174,7 +174,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
174 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 174 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
175 | } | 175 | } |
176 | 176 | ||
177 | static void _class_constructor(Eo *klass) | 177 | static void _class_constructor(Eo_Class *klass) |
178 | { | 178 | { |
179 | const Eo_Op_Func_Description func_desc[] = { | 179 | const Eo_Op_Func_Description func_desc[] = { |
180 | /* Virtual functions of parent class implemented in this class */ | 180 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out.h b/src/lib/ecore_audio/ecore_audio_obj_out.h index 68fa451389..0052545306 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out.h +++ b/src/lib/ecore_audio/ecore_audio_obj_out.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo *ecore_audio_obj_out_class_get() EINA_CONST; | 44 | const Eo_Class *ecore_audio_obj_out_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c index 0a504fa442..80f7fb0227 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c +++ b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c | |||
@@ -287,7 +287,7 @@ static void _destructor(Eo *eo_obj, void *_pd EINA_UNUSED, va_list *list EINA_UN | |||
287 | class_vars.outputs = eina_list_remove(class_vars.outputs, eo_obj); | 287 | class_vars.outputs = eina_list_remove(class_vars.outputs, eo_obj); |
288 | } | 288 | } |
289 | 289 | ||
290 | static void _class_constructor(Eo *klass) | 290 | static void _class_constructor(Eo_Class *klass) |
291 | { | 291 | { |
292 | const Eo_Op_Func_Description func_desc[] = { | 292 | const Eo_Op_Func_Description func_desc[] = { |
293 | /* Virtual functions of parent class implemented in this class */ | 293 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h index a1bc110201..a0318316d1 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h +++ b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo *ecore_audio_obj_out_pulse_class_get() EINA_CONST; | 44 | const Eo_Class *ecore_audio_obj_out_pulse_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_PULSE_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_PULSE_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c index 5e9664c817..445a63e484 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c +++ b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c | |||
@@ -214,7 +214,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
214 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 214 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
215 | } | 215 | } |
216 | 216 | ||
217 | static void _class_constructor(Eo *klass) | 217 | static void _class_constructor(Eo_Class *klass) |
218 | { | 218 | { |
219 | const Eo_Op_Func_Description func_desc[] = { | 219 | const Eo_Op_Func_Description func_desc[] = { |
220 | /* Virtual functions of parent class implemented in this class */ | 220 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h index d301bb45f8..818abbe646 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h +++ b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo *ecore_audio_obj_out_sndfile_class_get() EINA_CONST; | 44 | const Eo_Class *ecore_audio_obj_out_sndfile_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_SNDFILE_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_SNDFILE_BASE_ID; |
47 | 47 | ||