From 4fa4be2b14149483fa7aa58b6d0c6e3bf4ed542d Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 3 Nov 2016 17:13:30 +0100 Subject: [PATCH] evas_textgrid: remove pointers --- src/lib/evas/canvas/evas_textgrid.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/evas/canvas/evas_textgrid.eo b/src/lib/evas/canvas/evas_textgrid.eo index 974fd17276..30de3d2e45 100644 --- a/src/lib/evas/canvas/evas_textgrid.eo +++ b/src/lib/evas/canvas/evas_textgrid.eo @@ -126,7 +126,7 @@ class Evas.Textgrid (Efl.Canvas.Object, Efl.Text.Properties) params { @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 { @@ -139,7 +139,7 @@ class Evas.Textgrid (Efl.Canvas.Object, Efl.Text.Properties) See also @.cellrow_set, @.size.set and @.update_add. @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 { @in y: int; [[The row index of the grid.]] }