From: Luca Bruno Date: Thu, 28 Jul 2011 08:57:50 +0000 (+0200) Subject: doclets/gtkdoc: Fix the output of SourceCode elements X-Git-Tag: 0.37.1~3^2~331 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=cdddb3d85254b852dd9ac0b975903b46386431ed;p=thirdparty%2Fvala.git doclets/gtkdoc: Fix the output of SourceCode elements Fixes bug 648986. --- diff --git a/src/doclets/gtkdoc/commentconverter.vala b/src/doclets/gtkdoc/commentconverter.vala index 5a1486411..41921995b 100644 --- a/src/doclets/gtkdoc/commentconverter.vala +++ b/src/doclets/gtkdoc/commentconverter.vala @@ -209,7 +209,7 @@ public class Gtkdoc.CommentConverter : ContentVisitor { public override void visit_source_code (SourceCode code) { current_builder.append (""); - code.accept_children (this); + current_builder.append (code.code); current_builder.append (""); }