Changeset 50857 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Mar 25, 2014 9:40:23 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92947
- Location:
- trunk/src/VBox/Main/idl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r50721 r50857 20569 20569 <see><link to="ISnapshot"/></see> 20570 20570 </desc> 20571 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 20571 20572 </interface> 20572 20573 … … 20587 20588 <see><link to="ISnapshot"/></see> 20588 20589 </desc> 20590 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 20589 20591 </interface> 20590 20592 … … 20598 20600 <see><link to="ISnapshot"/></see> 20599 20601 </desc> 20602 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 20600 20603 </interface> 20601 20604 … … 20756 20759 find out what has changed. 20757 20760 </desc> 20761 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 20758 20762 </interface> 20759 20763 … … 20822 20826 changes. 20823 20827 </desc> 20828 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 20824 20829 </interface> 20825 20830 … … 21314 21319 </desc> 21315 21320 21321 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21316 21322 </interface> 21317 21323 … … 21342 21348 </desc> 21343 21349 21350 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21344 21351 </interface> 21345 21352 … … 21355 21362 find out what has changed. 21356 21363 </desc> 21364 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21357 21365 </interface> 21358 21366 … … 21367 21375 attributes to find out what is the current status. 21368 21376 </desc> 21377 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21369 21378 </interface> 21370 21379 … … 21377 21386 Notification when video capture settings have changed. 21378 21387 </desc> 21388 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21379 21389 </interface> 21380 21390 … … 21390 21400 find out what has changed. 21391 21401 </desc> 21402 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21392 21403 </interface> 21393 21404 … … 21668 21679 <link to="IConsole::state">machine state</link> change. 21669 21680 </desc> 21681 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 21670 21682 </interface> 21671 21683 … … 22033 22045 wsmap="managed" autogen="VBoxEvent" id="OnHostNameResolutionConfigurationChange" 22034 22046 > 22047 <attribute name="midlDoesNotLikEmptyInterfaces" readonly="yes" type="boolean"/> 22035 22048 </interface> 22036 22049 -
trunk/src/VBox/Main/idl/comimpl.xsl
r49678 r50857 269 269 </xsl:choose> 270 270 271 <xsl:for-each select="//interface[@name=$name]/attribute ">271 <xsl:for-each select="//interface[@name=$name]/attribute[@name != 'midlDoesNotLikEmptyInterfaces']"> 272 272 <xsl:variable name="aName" select="concat('a_',@name)"/> 273 273 <xsl:variable name="aTypeName"> … … 583 583 </xsl:otherwise> 584 584 </xsl:choose> 585 586 <!-- Before we generate attribute code, we check and make sure there are attributes here. --> 587 <xsl:if test="count(attribute) = 0 and @name != 'INATNetworkAlterEvent'"> 588 <xsl:call-template name="fatalError"> 589 <xsl:with-param name="msg">error: <xsl:value-of select="@name"/> has no attributes</xsl:with-param> 590 </xsl:call-template> 591 </xsl:if> 592 585 593 <xsl:call-template name="genAttrCode"> 586 594 <xsl:with-param name="name" select="@name" /> … … 767 775 </xsl:choose> 768 776 769 <xsl:for-each select="//interface[@name=$name]/attribute ">777 <xsl:for-each select="//interface[@name=$name]/attribute[@name != 'midlDoesNotLikEmptyInterfaces']"> 770 778 <xsl:variable name="aName" select="concat('a_',@name)"/> 771 779 <xsl:variable name="aTypeName"> … … 805 813 </xsl:choose> 806 814 807 <xsl:for-each select="//interface[@name=$name]/attribute ">815 <xsl:for-each select="//interface[@name=$name]/attribute[@name != 'midlDoesNotLikEmptyInterfaces']"> 808 816 <xsl:variable name="aName" select="concat('a_',@name)"/> 809 817 <xsl:choose>
Note:
See TracChangeset
for help on using the changeset viewer.