Changeset 29730 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 21, 2010 12:48:19 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIExportApplianceWzd.cpp
r29722 r29730 132 132 void UIExportApplianceWzdPage1::initializePage() 133 133 { 134 /* Fill and translate */ 135 retranslateUi(); 136 134 137 /* Choose initially selected item (if passed) */ 135 138 QList<QListWidgetItem*> list = m_pVMSelector->findItems(m_strSelectedVMName, Qt::MatchExactly); … … 221 224 void UIExportApplianceWzdPage2::initializePage() 222 225 { 226 /* Fill and translate */ 227 retranslateUi(); 228 223 229 /* We propose a filename the first time the second page is displayed */ 224 230 prepareSettingsWidget(); … … 335 341 void UIExportApplianceWzdPage3::initializePage() 336 342 { 343 /* Fill and translate */ 344 retranslateUi(); 345 337 346 /* Revert to initial choice */ 338 347 m_pTypeLocalFilesystem->click(); … … 398 407 void UIExportApplianceWzdPage4::initializePage() 399 408 { 409 /* Fill and translate */ 410 retranslateUi(); 411 400 412 /* Setup components for chosen storage-type */ 401 413 StorageType storageType = field("storageType").value<StorageType>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/firstrun/UIFirstRunWzd.cpp
r29722 r29730 132 132 void UIFirstRunWzdPage1::initializePage() 133 133 { 134 /* Fill and translate */ 135 retranslateUi(); 134 136 } 135 137 … … 179 181 void UIFirstRunWzdPage2::initializePage() 180 182 { 183 /* Fill and translate */ 184 retranslateUi(); 185 181 186 /* Initial choice */ 182 187 m_pMediaSelector->setCurrentIndex(0); … … 269 274 void UIFirstRunWzdPage3::initializePage() 270 275 { 276 /* Fill and translate */ 277 retranslateUi(); 278 271 279 /* Summary should initially have focus */ 272 280 m_pSummaryText->setFocus(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIImportApplianceWzd.cpp
r29722 r29730 179 179 void UIImportApplianceWzdPage1::initializePage() 180 180 { 181 /* Fill and translate */ 182 retranslateUi(); 181 183 } 182 184 … … 214 216 registerField("applianceWidget", this, "applianceWidget"); 215 217 m_pApplianceWidget = m_pSettingsCnt; 218 219 /* Fill and translate */ 220 retranslateUi(); 216 221 } 217 222 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newhd/UINewHDWzd.cpp
r29722 r29730 121 121 void UINewHDWzdPage1::initializePage() 122 122 { 123 /* Fill and translate */ 124 retranslateUi(); 123 125 } 124 126 … … 150 152 void UINewHDWzdPage2::initializePage() 151 153 { 154 /* Fill and translate */ 155 retranslateUi(); 156 152 157 /* Prepare initial choice */ 153 158 m_pTypeDynamic->click(); … … 250 255 void UINewHDWzdPage3::initializePage() 251 256 { 257 /* Fill and translate */ 258 retranslateUi(); 259 252 260 /* Initialise location */ 253 261 m_pLocationEditor->setText(m_strInitialName); … … 460 468 void UINewHDWzdPage4::initializePage() 461 469 { 470 /* Fill and translate */ 471 retranslateUi(); 472 462 473 /* Summary should have focus initially */ 463 474 m_pSummaryText->setFocus(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UINewVMWzd.cpp
r29722 r29730 186 186 void UINewVMWzdPage1::initializePage() 187 187 { 188 /* Fill and translate */ 189 retranslateUi(); 188 190 } 189 191 … … 217 219 void UINewVMWzdPage2::initializePage() 218 220 { 221 /* Fill and translate */ 222 retranslateUi(); 223 219 224 /* 'Name' field should have focus initially */ 220 225 m_pNameEditor->setFocus(); … … 284 289 void UINewVMWzdPage3::initializePage() 285 290 { 291 /* Fill and translate */ 292 retranslateUi(); 293 286 294 /* Assign recommended 'ram' field value */ 287 295 CGuestOSType type = field("type").value<CGuestOSType>(); … … 370 378 void UINewVMWzdPage4::initializePage() 371 379 { 380 /* Fill and translate */ 381 retranslateUi(); 382 372 383 /* Prepare initial choice */ 373 384 m_pBootHDCnt->setChecked(true); … … 600 611 void UINewVMWzdPage5::initializePage() 601 612 { 613 /* Fill and translate */ 614 retranslateUi(); 615 602 616 /* Summary should have focus initially */ 603 617 m_pSummaryText->setFocus(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/registration/UIRegistrationWzd.cpp
r29722 r29730 526 526 m_pLeOldEmail->setText(data.account()); 527 527 m_pLeOldEmail->setFocus(); 528 529 /* Fill and translate */ 530 retranslateUi(); 528 531 } 529 532
Note:
See TracChangeset
for help on using the changeset viewer.