Ecore audio: Fix eo references.
authorTom Hacohen <tom@stosb.com>
Tue, 4 Aug 2015 10:13:01 +0000 (11:13 +0100)
committerTom Hacohen <tom@stosb.com>
Tue, 4 Aug 2015 10:13:01 +0000 (11:13 +0100)
src/lib/ecore_audio/ecore_audio_in.eo
src/lib/ecore_audio/ecore_audio_out.eo

index 804c609..0d62cda 100644 (file)
@@ -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 {
index 465dce6..cd25f87 100644 (file)
@@ -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 {