format: Use strbuf builtin type instead of ptr()

This commit is contained in:
Jean-Philippe Andre 2017-11-22 16:28:56 +09:00
parent 43a6fddf1f
commit 22919b2050
1 changed files with 1 additions and 1 deletions

View 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.]]
}
};