Changeset 103977 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Mar 21, 2024 2:04:52 AM (11 months ago)
- svn:sync-xref-src-repo-rev:
- 162357
- Location:
- trunk/src/VBox/Main/idl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/apiwrap-server.xsl
r98262 r103977 1122 1122 <xsl:with-param name="dir">out</xsl:with-param> 1123 1123 </xsl:call-template> 1124 <xsl:text>) ;1124 <xsl:text>) RT_OVERRIDE; 1125 1125 </xsl:text> 1126 1126 … … 1130 1130 <xsl:with-param name="dir">in</xsl:with-param> 1131 1131 </xsl:call-template> 1132 <xsl:text>) ;1132 <xsl:text>) RT_OVERRIDE; 1133 1133 </xsl:text> 1134 1134 </xsl:if> … … 1598 1598 <xsl:text> STDMETHOD(COMGETTER(InternalAndReservedAttribute</xsl:text> 1599 1599 <xsl:value-of select="concat(position(), $name)"/> 1600 <xsl:text>))(ULONG *aReserved) ;
</xsl:text>1600 <xsl:text>))(ULONG *aReserved) RT_OVERRIDE;
</xsl:text> 1601 1601 </xsl:for-each> 1602 1602 </xsl:if> … … 1711 1711 </xsl:if> 1712 1712 </xsl:for-each> 1713 <xsl:text>) ;1713 <xsl:text>) RT_OVERRIDE; 1714 1714 </xsl:text> 1715 1715 … … 2241 2241 <xsl:text> STDMETHOD(InternalAndReservedMethod</xsl:text> 2242 2242 <xsl:value-of select="concat(position(), $name)"/> 2243 <xsl:text>)() ;
</xsl:text>2243 <xsl:text>)() RT_OVERRIDE;
</xsl:text> 2244 2244 </xsl:for-each> 2245 2245 </xsl:if> -
trunk/src/VBox/Main/idl/comimpl.xsl
r98108 r103977 800 800 return mEvent->WaitProcessed(aTimeout, aResult); 801 801 } 802 void uninit() 802 void uninit() RT_OVERRIDE 803 803 { 804 804 if (!mEvent.isNull())
Note:
See TracChangeset
for help on using the changeset viewer.