evas_textgrid: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-03 17:13:30 +01:00
parent df47f92236
commit 4fa4be2b14
1 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ class Evas.Textgrid (Efl.Canvas.Object, Efl.Text.Properties)
params { params {
@in y: int; [[The row index of the grid.]] @in y: int; [[The row index of the grid.]]
@in row: const(Evas.Textgrid.Cell)*; [[The string as a sequence of #Evas_Textgrid_Cell.]] @in row: ptr(const(Evas.Textgrid.Cell)); [[The string as a sequence of #Evas_Textgrid_Cell.]]
} }
} }
cellrow_get @const { cellrow_get @const {
@ -139,7 +139,7 @@ class Evas.Textgrid (Efl.Canvas.Object, Efl.Text.Properties)
See also @.cellrow_set, @.size.set and @.update_add. See also @.cellrow_set, @.size.set and @.update_add.
@since 1.7]] @since 1.7]]
return: Evas.Textgrid.Cell*; [[A pointer to the first cell of the given row.]] return: ptr(Evas.Textgrid.Cell); [[A pointer to the first cell of the given row.]]
params { params {
@in y: int; [[The row index of the grid.]] @in y: int; [[The row index of the grid.]]
} }