Changeset 86351 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 30, 2020 3:55:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.cpp
r86346 r86351 236 236 case 0: 237 237 { 238 /* Ask for cloud boot-volumes, currently we are interested in Source boot-volumes only: */239 comProgress = comCloudClient.ListSourceBootVolumes(comNames, comIDs);240 break;241 }242 case 1:243 {244 238 /* Ask for cloud images, currently we are interested in Available images only: */ 245 239 const QVector<KCloudImageState> cloudImageStates = QVector<KCloudImageState>() … … 248 242 break; 249 243 } 244 case 1: 245 { 246 /* Ask for cloud boot-volumes, currently we are interested in Source boot-volumes only: */ 247 comProgress = comCloudClient.ListSourceBootVolumes(comNames, comIDs); 248 break; 249 } 250 250 default: 251 251 break; … … 345 345 case 0: 346 346 { 347 /* Add image id to virtual system description: */ 348 comVSD.AddDescription(KVirtualSystemDescriptionType_CloudImageId, imageId(), QString()); 349 break; 350 } 351 case 1: 352 { 347 353 /* Add boot-volume id to virtual system description: */ 348 354 comVSD.AddDescription(KVirtualSystemDescriptionType_CloudBootVolumeId, imageId(), QString()); 349 break;350 }351 case 1:352 {353 /* Add image id to virtual system description: */354 comVSD.AddDescription(KVirtualSystemDescriptionType_CloudImageId, imageId(), QString());355 355 break; 356 356 } … … 653 653 654 654 /* Translate source tab-bar: */ 655 m_pSourceTabBar->setTabText(0, UIWizardNewCloudVM::tr("& Boot Volumes"));656 m_pSourceTabBar->setTabText(1, UIWizardNewCloudVM::tr("& Images"));655 m_pSourceTabBar->setTabText(0, UIWizardNewCloudVM::tr("&Images")); 656 m_pSourceTabBar->setTabText(1, UIWizardNewCloudVM::tr("&Boot Volumes")); 657 657 658 658 /* Adjust label widths: */
Note:
See TracChangeset
for help on using the changeset viewer.