Changeset 14340 in vbox
- Timestamp:
- Nov 19, 2008 9:19:48 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsGeneral.cpp
r14339 r14340 376 376 if (mSlRam->value() + mSlVideo->value() > 0.75 * fullSize) 377 377 { 378 aWarning = tr (" More than 75% of total system RAM allocated for"379 " virtual machine, this will provoke host system"380 " to work unstable. Error found");378 aWarning = tr ("You have assigned more than 75% of your computer's memory to " 379 "the virtual machine. Not enough memory is left for your host " 380 "operating system. Please select a smaller amount. Error found"); 381 381 return false; 382 382 } else 383 383 if (mSlRam->value() + mSlVideo->value() > 0.5 * fullSize) 384 384 { 385 aWarning = tr (" More than 50% of total system RAM allocated for"386 " virtual machine, this could provoke host system"387 " to work unstable. Use at your own risk. Problem found");385 aWarning = tr ("You have assigned more than 50% of your computer's memory to " 386 "the virtual machine. Not enough memory might be left for your host " 387 "operating system. Continue at your own risk. Problem found"); 388 388 return true; 389 389 }
Note:
See TracChangeset
for help on using the changeset viewer.