diff options
Diffstat (limited to 'src/lib/elementary')
-rw-r--r-- | src/lib/elementary/elm_prefs.eo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_prefs.eo b/src/lib/elementary/elm_prefs.eo index 51091638dd..32f72cba26 100644 --- a/src/lib/elementary/elm_prefs.eo +++ b/src/lib/elementary/elm_prefs.eo | |||
@@ -93,7 +93,7 @@ class Elm.Prefs (Elm.Widget, Efl.File) | |||
93 | return: bool; [[$true, on success, $false otherwise]] | 93 | return: bool; [[$true, on success, $false otherwise]] |
94 | params { | 94 | params { |
95 | @in name: string; [[The name of the item (as declared in the prefs collection)]] | 95 | @in name: string; [[The name of the item (as declared in the prefs collection)]] |
96 | @in value: ptr(const(generic_value)); [[The value to set on the item. It should be typed as the item expects, preferably, or a conversion will take place]] | 96 | @in value: ptr(const(any_value)); [[The value to set on the item. It should be typed as the item expects, preferably, or a conversion will take place]] |
97 | } | 97 | } |
98 | } | 98 | } |
99 | item_value_get @const { | 99 | item_value_get @const { |
@@ -106,7 +106,7 @@ class Elm.Prefs (Elm.Widget, Efl.File) | |||
106 | 106 | ||
107 | params { | 107 | params { |
108 | @in name: string; [[The name of the item (as declared in the prefs collection) to get value from]] | 108 | @in name: string; [[The name of the item (as declared in the prefs collection) to get value from]] |
109 | @out value: generic_value; [[Where to store the value of the item. It will be overwritten and setup with the type the item is bound to]] | 109 | @out value: any_value; [[Where to store the value of the item. It will be overwritten and setup with the type the item is bound to]] |
110 | } | 110 | } |
111 | } | 111 | } |
112 | item_object_get { | 112 | item_object_get { |