X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FBuildDocs.js;h=8c8552e39bd43923087604ce4316791c25743863;hp=fc5011debeb2ffbe49a3fbc4e4033110ae6760d0;hb=HEAD;hpb=d50db89f4da555f05548ce918dc60ef8a72bb075 diff --git a/JSDOC/BuildDocs.js b/JSDOC/BuildDocs.js index fc5011d..8c8552e 100644 --- a/JSDOC/BuildDocs.js +++ b/JSDOC/BuildDocs.js @@ -428,7 +428,7 @@ BuildDocs = { m = ownMethods[i]; methods.push( { name : m.name, - sig : this.makeFuncSkel(m.params), + sig : this.makeMethodSkel(m.params), type : 'function', desc : m.desc }); @@ -505,7 +505,7 @@ BuildDocs = { function($) { return $.name.indexOf(".") == -1; // don't show config params in signature } - ).map( function($) { return $.type + " " +( $.name == 'this' ? '_self' : $.name; ) } ).join(", ") + + ).map( function($) { return $.type + " " +( $.name == 'this' ? '_self' : $.name ); } ).join(", ") + ")"; }