2009-02-09 Jürg Billeter <j@bitron.ch>
* gobject/valaccodedelegatemodule.vala:
Emit delegate documentation to the C header files
svn path=/trunk/; revision=2424
+2009-02-09 Jürg Billeter <j@bitron.ch>
+
+ * gobject/valaccodedelegatemodule.vala:
+
+ Emit delegate documentation to the C header files
+
2009-02-08 Jürg Billeter <j@bitron.ch>
* vala/valanamespace.vala:
var ctypedef = new CCodeTypeDefinition (d.return_type.get_cname (), cfundecl);
if (!d.is_internal_symbol ()) {
+ if (d.source_reference != null && d.source_reference.comment != null) {
+ header_type_declaration.append (new CCodeComment (d.source_reference.comment));
+ }
header_type_declaration.append (ctypedef);
} else {
+ if (d.source_reference != null && d.source_reference.comment != null) {
+ source_type_declaration.append (new CCodeComment (d.source_reference.comment));
+ }
source_type_declaration.append (ctypedef);
}
}