Commit 3eb4cd1c authored by Pavel Vainerman's avatar Pavel Vainerman

fixed bug in codegen

parent b3ee8302
...@@ -60,10 +60,10 @@ ...@@ -60,10 +60,10 @@
<xsl:call-template name="settype"><xsl:with-param name="iotype" select="../../@iotype" /></xsl:call-template><xsl:text> prev_</xsl:text><xsl:call-template name="setprefix"/><xsl:value-of select="../../@name"/>; /*!&lt; */ <xsl:call-template name="settype"><xsl:with-param name="iotype" select="../../@iotype" /></xsl:call-template><xsl:text> prev_</xsl:text><xsl:call-template name="setprefix"/><xsl:value-of select="../../@name"/>; /*!&lt; */
</xsl:when> </xsl:when>
<xsl:when test="$GENTYPE='C'"><xsl:value-of select="../../@name"/>(<xsl:value-of select="../../@id"/>), <xsl:when test="$GENTYPE='C'"><xsl:value-of select="../../@name"/>(<xsl:value-of select="../../@id"/>),
<xsl:if test="normalize-space(../../@node)=''"> <xsl:if test="not(normalize-space(../../@node)='')">
node_<xsl:value-of select="../../@name"/>(<xsl:value-of select="../../@node"/>), node_<xsl:value-of select="../../@name"/>(<xsl:value-of select="../../@node"/>),
</xsl:if> </xsl:if>
<xsl:if test="not(normalize-space(../../@node)='')"> <xsl:if test="normalize-space(../../@node)=''">
node_<xsl:value-of select="../../@name"/>(UniSetTypes::conf->getLocalNode()), node_<xsl:value-of select="../../@name"/>(UniSetTypes::conf->getLocalNode()),
</xsl:if> </xsl:if>
<xsl:if test="normalize-space(../../@default)=''"> <xsl:if test="normalize-space(../../@default)=''">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment