summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-08-04 11:13:01 +0100
committerTom Hacohen <tom@stosb.com>2015-08-04 11:13:01 +0100
commitb2a0026f7a3e49b344a2f3ef35b0737acaacb9c3 (patch)
treef1381de35fc2e0e3b21abf424dc15f65f8782ff0
parentc25b2bcc3ac295338a9b112aaf3290fb83685c4c (diff)
downloadefl-b2a0026f7a3e49b344a2f3ef35b0737acaacb9c3.tar.gz
Ecore audio: Fix eo references.
-rw-r--r--src/lib/ecore_audio/ecore_audio_in.eo2
-rw-r--r--src/lib/ecore_audio/ecore_audio_out.eo6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_in.eo b/src/lib/ecore_audio/ecore_audio_in.eo
index 804c60942b..0d62cdab97 100644
--- a/src/lib/ecore_audio/ecore_audio_in.eo
+++ b/src/lib/ecore_audio/ecore_audio_in.eo
@@ -121,7 +121,7 @@ class Ecore_Audio_In (Ecore_Audio)
]]
}
values {
- output: Eo *; [[The output]]
+ output: Ecore_Audio *; [[The output]] /* FIXME-cyclic Should be Ecore_Audio_Out */
}
}
@property remaining {
diff --git a/src/lib/ecore_audio/ecore_audio_out.eo b/src/lib/ecore_audio/ecore_audio_out.eo
index 465dce64bd..cd25f87c8b 100644
--- a/src/lib/ecore_audio/ecore_audio_out.eo
+++ b/src/lib/ecore_audio/ecore_audio_out.eo
@@ -11,7 +11,7 @@ class Ecore_Audio_Out (Ecore_Audio)
]]
return: bool; [[true if the input was attached, false otherwise]]
params {
- @in input: Eo *; [[The input to attach to the output]]
+ @in input: Ecore_Audion_In *; [[The input to attach to the output]]
}
}
input_detach {
@@ -21,7 +21,7 @@ class Ecore_Audio_Out (Ecore_Audio)
]]
return: bool; [[true if the input was detached, false otherwise]]
params {
- @in input: Eo *; [[The input to detach to the output]]
+ @in input: Ecore_Audio_In *; [[The input to detach to the output]]
}
}
inputs_get {
@@ -29,7 +29,7 @@ class Ecore_Audio_Out (Ecore_Audio)
@since 1.8
]]
- return: list<Eo*> *; [[A list of the inputs that are attached to the output]]
+ return: list<Ecore_Audio_In*> *; [[A list of the inputs that are attached to the output]]
}
}
implements {