summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2013-02-14 23:00:51 -0500
committerJasper St. Pierre <jstpierre@mecheye.net>2013-02-14 23:18:00 -0500
commit5a890b79fd720a9eec4d3b9eb1c9cdd6d7b24653 (patch)
tree09a4041d43dbe07246410ef51c476b19a6baa842 /giscanner/doctemplates
parent3b64a2e808ae25b437c30bec237ada89dc4bcfb3 (diff)
downloadgobject-introspection-5a890b79fd720a9eec4d3b9eb1c9cdd6d7b24653.tar.gz
doctool: Gjs doesn't have extra signal parameters
Diffstat (limited to 'giscanner/doctemplates')
-rw-r--r--giscanner/doctemplates/Gjs/signal.tmpl10
1 files changed, 1 insertions, 9 deletions
diff --git a/giscanner/doctemplates/Gjs/signal.tmpl b/giscanner/doctemplates/Gjs/signal.tmpl
index 994392ce..7d28cad5 100644
--- a/giscanner/doctemplates/Gjs/signal.tmpl
+++ b/giscanner/doctemplates/Gjs/signal.tmpl
@@ -9,7 +9,7 @@ function callback(${formatter.to_underscores(node.parent.name).lower()}, \
% for arg in formatter.get_parameters(node):
${arg.argname}:${formatter.format_type(arg.type)}, \
% endfor
-user_param1, ...):${formatter.format_type(node.retval.type)};
+):${formatter.format_type(node.retval.type)};
</code></synopsis>
</%block>
<%block name="details">
@@ -24,14 +24,6 @@ user_param1, ...):${formatter.format_type(node.retval.type)};
${formatter.format(node, arg.doc)}
</item>
% endfor
-<item>
-<title><code>user_param1</code></title>
-<p>first user parameter (if any) specified with the connect() method</p>
-</item>
-<item>
-<title><code>...</code></title>
-<p>additional user parameters (if any)</p>
-</item>
% if node.retval and \
node.retval.type.ctype != 'void' and \
node.retval.type.ctype is not None: