elm gengrid_item toolbar_item: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-10 15:47:31 +01:00
parent 6b156ad6c6
commit 8fe9fcf9d8
2 changed files with 7 additions and 7 deletions

View File

@ -77,7 +77,7 @@ class Elm.Gengrid.Item(Elm.Widget.Item)
the function pointers and item_style.]]
}
values {
itc: const (Elm.Gengrid.Item.Class) *; [[Gengrid Item class for the given item]]
itc: ptr(const(Elm.Gengrid.Item.Class)); [[Gengrid Item class for the given item]]
}
}
@property index {
@ -216,7 +216,7 @@ class Elm.Gengrid.Item(Elm.Widget.Item)
displayed. After changing the item class, elm_gengrid_item_update() is
called on the item $it.]]
params {
@in itc: const (Elm.Gengrid.Item.Class) *; [[The gengrid item class describing the function pointers and the item style.]]
@in itc: ptr(const(Elm.Gengrid.Item.Class)); [[The gengrid item class describing the function pointers and the item style.]]
}
}
all_contents_unset{

View File

@ -179,7 +179,7 @@ class Elm.Toolbar.Item(Elm.Widget.Item)
return: bool;
}
values {
state: Elm.Toolbar.Item.State * @nullable;
state: ptr(Elm.Toolbar.Item.State) @nullable;
}
}
/* init { FIXME
@ -231,12 +231,12 @@ class Elm.Toolbar.Item(Elm.Widget.Item)
@in func: Evas_Smart_Cb @optional; [[The function to call when the item is clicked when this state is selected.]]
@in data: const(void_ptr) @optional; [[The data to associate with the state.]]
}
return: Elm.Toolbar.Item.State *; [[The toolbar item state, or $null upon failure.]]
return: ptr(Elm.Toolbar.Item.State); [[The toolbar item state, or $null upon failure.]]
}
state_del {
[[Delete a previously added state to $item.]]
params {
@in state: Elm.Toolbar.Item.State *; [[The state to be deleted.]]
@in state: ptr(Elm.Toolbar.Item.State); [[The state to be deleted.]]
}
return: bool; [[$true on success or $false on failure.]]
}
@ -246,7 +246,7 @@ class Elm.Toolbar.Item(Elm.Widget.Item)
If last state is selected, this function will return first
state.
]]
return: Elm.Toolbar.Item.State *; [[The state after current state, or $null on failure.]]
return: ptr(Elm.Toolbar.Item.State); [[The state after current state, or $null on failure.]]
}
state_prev {
[[Get the state before selected state in toolbar's $item.
@ -254,7 +254,7 @@ class Elm.Toolbar.Item(Elm.Widget.Item)
If first state is selected, this function will return last
state.
]]
return: Elm.Toolbar.Item.State *; [[The state before current state, or $null on failure.]]
return: ptr(Elm.Toolbar.Item.State); [[The state before current state, or $null on failure.]]
}
show {
[[Show a specific item, when the toolbar can be scrolled.