format: Use strbuf builtin type instead of ptr()
authorJean-Philippe Andre <jp.andre@samsung.com>
Wed, 22 Nov 2017 07:28:56 +0000 (16:28 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Tue, 5 Dec 2017 01:09:58 +0000 (10:09 +0900)
src/lib/efl/interfaces/efl_ui_format.eo

index 2f386da..38647d3 100644 (file)
@@ -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.]]
    }
 };