Changeset 92764 in vbox
- Timestamp:
- Dec 6, 2021 1:37:04 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/networkmanager/UIDetailsWidgetCloudNetwork.cpp
r92762 r92764 120 120 m_pLabelProviderName->setText(tr("&Provider:")); 121 121 if (m_pComboProviderName) 122 {123 122 m_pComboProviderName->setToolTip(tr("Holds the cloud provider for this network.")); 124 m_pComboProviderName->setItemText(0, "--");125 }126 123 if (m_pLabelProfileName) 127 124 m_pLabelProfileName->setText(tr("P&rofile:")); … … 341 338 342 339 /* Add empty item: */ 343 m_pComboProviderName->addItem( QString());340 m_pComboProviderName->addItem("--"); 344 341 345 342 /* Iterate through existing providers: */ … … 394 391 m_pComboProfileName->clear(); 395 392 393 /* Add empty item: */ 394 m_pComboProfileName->addItem("--"); 395 396 396 /* Acquire provider short name: */ 397 397 const QString strProviderShortName = m_pComboProviderName->currentData().toString();
Note:
See TracChangeset
for help on using the changeset viewer.