Changeset 86787 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserAbstractModel.cpp
- Timestamp:
- Nov 2, 2020 6:21:59 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserAbstractModel.cpp
r86786 r86787 913 913 /* Reload cloud tree: */ 914 914 reloadCloudTree(); 915 } 916 917 void UIChooserAbstractModel::createReadCloudMachineListTask(const UICloudEntityKey &guiCloudProfileKey, bool fWithRefresh) 918 { 919 /* Create list cloud machines task: */ 920 UITaskCloudListMachines *pTask = new UITaskCloudListMachines(guiCloudProfileKey.m_strProviderShortName, 921 guiCloudProfileKey.m_strProfileName, 922 fWithRefresh); 923 AssertPtrReturnVoid(pTask); 924 uiCommon().threadPoolCloud()->enqueueTask(pTask); 915 925 } 916 926 … … 1116 1126 1117 1127 /* Create list cloud machines task: */ 1118 UITaskCloudListMachines *pTask = new UITaskCloudListMachines(strProviderShortName, 1119 strProfileName, 1120 true /* with refresh? */); 1121 AssertPtrReturnVoid(pTask); 1122 uiCommon().threadPoolCloud()->enqueueTask(pTask); 1128 createReadCloudMachineListTask(guiCloudProfileKey, true /* with refresh? */); 1123 1129 } 1124 1130 }
Note:
See TracChangeset
for help on using the changeset viewer.