Changeset 9892 in vbox for trunk/src/VBox
- Timestamp:
- Jun 24, 2008 12:39:28 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxNewVMWzd.cpp
r9625 r9892 143 143 void VBoxNewVMWzd::retranslateUi() 144 144 { 145 /* Translate uic generated strings */145 /* Translate uic generated strings */ 146 146 Ui::VBoxNewVMWzd::retranslateUi (this); 147 147 … … 151 151 tr ("The recommended base memory size is <b>%1</b> MB.") 152 152 .arg (type.GetRecommendedRAM())); 153 mSlRAM->setValue (type.GetRecommendedRAM());154 153 mTextVDIBest->setText ( 155 154 tr ("The recommended size of the boot hard disk is <b>%1</b> MB.") … … 228 227 /* update media combobox */ 229 228 VBoxMedia::Status status = 230 chd.GetAccessible() == TRUE? VBoxMedia::Ok :229 chd.GetAccessible() ? VBoxMedia::Ok : 231 230 chd.isOk() ? VBoxMedia::Inaccessible : 232 231 VBoxMedia::Error; … … 253 252 CGuestOSType type = vboxGlobal().vmGuestOSType (aItem); 254 253 mPmOS->setPixmap (vboxGlobal().vmGuestOSTypeIcon (type.GetId())); 254 mSlRAM->setValue (type.GetRecommendedRAM()); 255 255 } 256 256
Note:
See TracChangeset
for help on using the changeset viewer.