Revision: 1320 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1320&view=re... Author: colombanw Date: 2010-05-01 17:45:11 +0000 (Sat, 01 May 2010)
Log Message: ----------- GeanyGenDoc: Fix support of argument list and return type for methods
Methods was just forgotten in the list of things that can have arguments and return type (oops).
Modified Paths: -------------- trunk/geanygendoc/src/ggd.c
Modified: trunk/geanygendoc/src/ggd.c =================================================================== --- trunk/geanygendoc/src/ggd.c 2010-04-29 00:41:48 UTC (rev 1319) +++ trunk/geanygendoc/src/ggd.c 2010-05-01 17:45:11 UTC (rev 1320) @@ -155,7 +155,8 @@ /* get arguments & return type if appropriate */ if (tag->type & (tm_tag_function_t | tm_tag_macro_with_arg_t | - tm_tag_prototype_t)) { + tm_tag_prototype_t | + tm_tag_method_t)) { gboolean returns; CtplValue *v;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.