doc: Don't print dash if doxygen brief description missing

This commit is contained in:
Bill Spitzak 2014-11-11 18:42:57 -08:00 committed by Pekka Paalanen
parent ba8ea938d2
commit f2974c1115

View file

@ -131,7 +131,9 @@
<varlistentry id="{@id}">
<term>
<xsl:value-of select="name"/>
- <xsl:apply-templates select="briefdescription" />
<xsl:if test="normalize-space(briefdescription) != ''">
- <xsl:apply-templates select="briefdescription" />
</xsl:if>
</term>
<listitem>
<para>
@ -150,8 +152,8 @@
<xsl:if test="@kind = 'class'">
<varlistentry id="{@id}">
<term>
<xsl:apply-templates select="compoundname" />
<xsl:if test="briefdescription">
<xsl:value-of select="compoundname" />
<xsl:if test="normalize-space(briefdescription) != ''">
- <xsl:apply-templates select="briefdescription" />
</xsl:if>
</term>