Changeset 49678 in vbox
- Timestamp:
- Nov 27, 2013 12:56:31 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90937
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/comimpl.xsl
r47848 r49678 196 196 <xsl:variable name="elemtype"> 197 197 <xsl:call-template name="typeIdl2Back"> 198 <xsl:with-param name="type" select=" @type" />198 <xsl:with-param name="type" select="$type" /> 199 199 <xsl:with-param name="safearray" select="''" /> 200 200 <xsl:with-param name="dir" select="'in'" /> … … 219 219 <xsl:variable name="elemtype"> 220 220 <xsl:call-template name="typeIdl2Back"> 221 <xsl:with-param name="type" select=" @type" />221 <xsl:with-param name="type" select="$type" /> 222 222 <xsl:with-param name="safearray" select="''" /> 223 223 <xsl:with-param name="dir" select="'in'" /> … … 328 328 329 329 <xsl:choose> 330 <xsl:when test="$ extends='IEvent'">330 <xsl:when test="$name='IEvent'"> 331 331 <xsl:value-of select=" '#ifdef VBOX_WITH_XPCOM '" /> 332 332 <xsl:value-of select="concat('NS_DECL_CLASSINFO(', $impl, ') ')" /> 333 <xsl:value-of select="concat('NS_IMPL_THREADSAFE_ISUPPORTS',$depth,'_CI(', $impl, ', ', $name,$parents, ', IEvent) ')" />333 <xsl:value-of select="concat('NS_IMPL_THREADSAFE_ISUPPORTS',$depth,'_CI(', $impl, $parents, ', IEvent) ')" /> 334 334 <xsl:value-of select=" '#endif '"/> 335 335 </xsl:when> … … 339 339 <xsl:with-param name="name" select="$extends" /> 340 340 <xsl:with-param name="depth" select="$depth+1" /> 341 <xsl:with-param name="parents" select="concat($parents, ', ', @name)" />341 <xsl:with-param name="parents" select="concat($parents, ', ', $name)" /> 342 342 </xsl:call-template> 343 343 </xsl:when> … … 592 592 <xsl:with-param name="impl" select="$implName" /> 593 593 <xsl:with-param name="name" select="@name" /> 594 <xsl:with-param name="depth" select="' 2'" />594 <xsl:with-param name="depth" select="'1'" /> 595 595 <xsl:with-param name="parents" select="''" /> 596 596 </xsl:call-template>
Note:
See TracChangeset
for help on using the changeset viewer.