Eo base: fix parameters to be the correct type.

Eo is not a type Eolian is aware of, the correct type is Eo.Base.
This commit is contained in:
Tom Hacohen 2016-04-19 15:33:05 +01:00
parent 81f45c1b90
commit 30df9d1092
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ abstract Eo.Base ()
]]
params {
@in key: const(char)*; [[the key associated with the object ref]]
@in objdata: Eo *; [[the object to set]]
@in objdata: Eo.Base *; [[the object to set]]
}
}
key_obj_get @const {
@ -215,7 +215,7 @@ abstract Eo.Base ()
params {
@in key: const(char)*; [[the key associated with the object ref]]
}
return: Eo *; [[the object reference for the key]]
return: Eo.Base *; [[the object reference for the key]]
}
key_obj_del {
[[Del generic objecrt reference from object.]]