summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:53:25 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:53:25 +0100
commit308aea36834e724fc093a526321d74ec9fdc062f (patch)
treedf2edba0f72426d706792007caad229835257c43
parentd47e3f3d206895e4c465d83ca7b33d6a2b1ddd2a (diff)
downloadefl-308aea36834e724fc093a526321d74ec9fdc062f.tar.gz
elm_prefs, elm_slideshow: remove pointers
-rw-r--r--src/lib/elementary/elm_prefs.eo4
-rw-r--r--src/lib/elementary/elm_slideshow.eo4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/elementary/elm_prefs.eo b/src/lib/elementary/elm_prefs.eo
index 9df14d337f..9ea1986b36 100644
--- a/src/lib/elementary/elm_prefs.eo
+++ b/src/lib/elementary/elm_prefs.eo
@@ -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 {
diff --git a/src/lib/elementary/elm_slideshow.eo b/src/lib/elementary/elm_slideshow.eo
index f072a18c58..76687fbe24 100644
--- a/src/lib/elementary/elm_slideshow.eo
+++ b/src/lib/elementary/elm_slideshow.eo
@@ -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.]]