From 22919b2050e4c8cb84454c7d47bb935bec957ad2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Wed, 22 Nov 2017 16:28:56 +0900 Subject: [PATCH] format: Use strbuf builtin type instead of ptr() --- src/lib/efl/interfaces/efl_ui_format.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/efl/interfaces/efl_ui_format.eo b/src/lib/efl/interfaces/efl_ui_format.eo index 2f386dafa7..38647d33fb 100644 --- a/src/lib/efl/interfaces/efl_ui_format.eo +++ b/src/lib/efl/interfaces/efl_ui_format.eo @@ -3,7 +3,7 @@ import eina_types; function Efl.Ui.Format_Func_Cb { [[Function pointer for format function hook]] params { - @in str: ptr(Eina.Strbuf); [[the formated string to be appended by user.]] + @in str: strbuf; [[the formated string to be appended by user.]] @in value: const(any_value); [[The Eina.Value passed by $obj.]] } };