Changeset 79049 in vbox for trunk/src/VBox/Main/idl/apiwrap-server-filelist.xsl
- Timestamp:
- Jun 8, 2019 2:30:56 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/apiwrap-server-filelist.xsl
r69379 r79049 65 65 66 66 <xsl:template match="interface" mode="filelist-even-sources"> 67 <xsl:if test="not(@internal='yes') and not(@ supportsErrorInfo='no') and (position() mod 2) = 0">67 <xsl:if test="not(@internal='yes') and not(@autogen='VBoxEvent') and not(@supportsErrorInfo='no') and (position() mod 2) = 0"> 68 68 <xsl:value-of select="concat(' \', $G_sNewLine, '	$(VBOX_MAIN_APIWRAPPER_DIR)/', substring(@name, 2), 'Wrap.cpp')"/> 69 69 </xsl:if> … … 71 71 72 72 <xsl:template match="interface" mode="filelist-odd-sources"> 73 <xsl:if test="not(@internal='yes') and not(@ supportsErrorInfo='no') and (position() mod 2) = 1">73 <xsl:if test="not(@internal='yes') and not(@autogen='VBoxEvent') and not(@supportsErrorInfo='no') and (position() mod 2) = 1"> 74 74 <xsl:value-of select="concat(' \', $G_sNewLine, '	$(VBOX_MAIN_APIWRAPPER_DIR)/', substring(@name, 2), 'Wrap.cpp')"/> 75 75 </xsl:if> … … 77 77 78 78 <xsl:template match="interface" mode="filelist-headers"> 79 <xsl:if test="not(@internal='yes') and not(@ supportsErrorInfo='no')">79 <xsl:if test="not(@internal='yes') and not(@autogen='VBoxEvent') and not(@supportsErrorInfo='no')"> 80 80 <xsl:value-of select="concat(' \', $G_sNewLine, '	$(VBOX_MAIN_APIWRAPPER_DIR)/', substring(@name, 2), 'Wrap.h')"/> 81 81 </xsl:if>
Note:
See TracChangeset
for help on using the changeset viewer.