diff options
Diffstat (limited to 'giscanner/doctemplates/Gjs/signal.tmpl')
-rw-r--r-- | giscanner/doctemplates/Gjs/signal.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/doctemplates/Gjs/signal.tmpl b/giscanner/doctemplates/Gjs/signal.tmpl index f2eb5868..83264804 100644 --- a/giscanner/doctemplates/Gjs/signal.tmpl +++ b/giscanner/doctemplates/Gjs/signal.tmpl @@ -6,7 +6,7 @@ <%block name="synopsis"> <synopsis><code mime="text/x-python"> function callback(${formatter.to_underscores(node.parent.name).lower()}, \ -% for arg in node.parameters: +% for arg in formatter.get_parameters(node): ${arg.argname}:${formatter.format_type(arg.type)}, \ % endfor user_param1, ...):${formatter.format_type(node.retval.type)}; @@ -16,7 +16,7 @@ user_param1, ...):${formatter.format_type(node.retval.type)}; <dl> <dt><p>${formatter.to_underscores(node.parent.name).lower()} :</p></dt> <dd><p>instance of ${namespace.name}.${node.parent.name} that is emitting the signal</p></dd> -% for arg in node.parameters: +% for arg in formatter.get_parameters(node): <dt><p>${arg.argname} :</p></dt> <dd>${formatter.format(node, arg.doc)}</dd> % endfor |