- Timestamp:
- Apr 10, 2020 2:07:00 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137151
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVM.cpp
r83653 r83670 23 23 24 24 /* COM includes: */ 25 #include "CCloudMachine.h" 25 26 #include "CProgress.h" 26 27 … … 75 76 foreach (const QString &strInstanceName, field("instanceIds").toStringList()) 76 77 { 78 CCloudMachine comMachine; 79 77 80 /* Initiate cloud VM add procedure: */ 78 CProgress comProgress = comClient.AddCloudMachine(strInstanceName); 81 CProgress comProgress = comClient.AddCloudMachine(strInstanceName, comMachine); 82 RT_NOREF(comMachine); 79 83 if (!comClient.isOk()) 80 84 { -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r83650 r83670 26680 26680 26681 26681 <interface name="ICloudMachine" extends="$unknown" 26682 uuid="bc b7c6d6-7a6e-11ea-9839-7f4258c13c14"26682 uuid="bcc71a82-7b27-11ea-8c77-2b2257f699a6" 26683 26683 wsmap="managed" 26684 26684 reservedMethods="16" reservedAttributes="8"> … … 26790 26790 <param name="progress" type="IProgress" dir="return"> 26791 26791 <desc> 26792 Progress object to track the operation completion. 26792 Progress object to track the operation completion. 26793 </desc> 26794 </param> 26795 </method> 26796 26797 <method name="unregister" wrap-hint-server="limitedcaller,passcaller"> 26798 <param name="progress" type="IProgress" dir="return"> 26799 <desc> 26800 Progress object to track the operation completion. 26793 26801 </desc> 26794 26802 </param> … … 26940 26948 </desc> 26941 26949 </param> 26942 <!--26943 26950 <param name="machine" type="ICloudMachine" dir="out"> 26944 26951 <desc> … … 26946 26953 </desc> 26947 26954 </param> 26948 -->26949 26955 <param name="progress" type="IProgress" dir="return"> 26950 26956 <desc>Progress object to track the operation completion.</desc>
Note:
See TracChangeset
for help on using the changeset viewer.