elm_prefs, elm_slideshow: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-10 15:53:25 +01:00
parent d47e3f3d20
commit 308aea3683
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ class Elm.Prefs (Elm.Widget, Efl.File)
get {
}
values {
data: Elm_Prefs_Data * @nullable; [[A valid prefs_data handle]]
data: ptr(Elm_Prefs_Data) @nullable; [[A valid prefs_data handle]]
}
}
@property autosave {
@ -92,7 +92,7 @@ class Elm.Prefs (Elm.Widget, Efl.File)
return: bool; [[$true, on success, $false otherwise]]
params {
@in name: string; [[The name of the item (as declared in the prefs collection)]]
@in value: 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]]
@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]]
}
}
item_value_get @const {

View File

@ -275,7 +275,7 @@ class Elm.Slideshow (Elm.Layout, Elm.Interface.Atspi_Widget_Action)
]]
return: Elm.Widget.Item; [[A handle to the item added or $null on errors.]]
params {
@in itc: const(Elm_Slideshow_Item_Class)*; [[The item class for the item.]]
@in itc: ptr(const(Elm_Slideshow_Item_Class)); [[The item class for the item.]]
@in data: const(void_ptr); [[The item's data.]]
}
}
@ -293,7 +293,7 @@ class Elm.Slideshow (Elm.Layout, Elm.Interface.Atspi_Widget_Action)
return: Elm.Widget.Item; [[Returns The slideshow item handle,
on success, or $null on errors.]]
params {
@in itc: const(Elm_Slideshow_Item_Class)*; [[The item class for the item.]]
@in itc: ptr(const(Elm_Slideshow_Item_Class)); [[The item class for the item.]]
@in data: const(void_ptr); [[The item's data.]]
@in func: Eina_Compare_Cb; [[The comparing function to be used to sort the slideshow
items by #Elm_Slideshow_Item_Class item handles.]]