Changeset 35639 in vbox for trunk/src/VBox/Main/idl/comimpl.xsl
- Timestamp:
- Jan 19, 2011 7:39:00 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69547
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/comimpl.xsl
r35638 r35639 67 67 </xsl:variable> 68 68 69 <xsl:value-of select="concat(' VBOX_DEFAULT_INTERFACE_ENTRIES(', $name, ') ')" />69 <xsl:value-of select="concat(' COM_INTERFACE_ENTRY(', $name, ') ')" /> 70 70 <xsl:choose> 71 71 <xsl:when test="$extends='$unknown'"> … … 471 471 <xsl:value-of select=" ' DECLARE_PROTECT_FINAL_CONSTRUCT() '" /> 472 472 <xsl:value-of select="concat(' BEGIN_COM_MAP(', $implName, ') ')" /> 473 <xsl:value-of select="concat(' VBOX_DEFAULT_INTERFACE_ENTRIES(', @name, ') ')" /> 474 473 475 <xsl:call-template name="genComEntry"> 474 476 <xsl:with-param name="name" select="@name" /> … … 480 482 HRESULT FinalConstruct() 481 483 { 484 BaseFinalConstruct(); 482 485 return mEvent.createObject(); 483 486 } … … 485 488 { 486 489 mEvent->FinalRelease(); 490 BaseFinalRelease(); 487 491 } 488 492 STDMETHOD(COMGETTER(Type)) (VBoxEventType_T *aType)
Note:
See TracChangeset
for help on using the changeset viewer.