Created
December 4, 2012 21:48
-
-
Save lukewpatterson/4209132 to your computer and use it in GitHub Desktop.
VirtualBox Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bool UIMessageCenter::warnAboutVirtNotEnabled64BitsGuest(bool fHWVirtExSupported) | |
{ | |
... | |
else | |
return messageOkCancel(mainWindowShown(), Error, | |
tr("<p>VT-x/AMD-V hardware acceleration is not available on your system. " | |
"Your 64-bit guest will fail to detect a 64-bit CPU and will " | |
"not be able to boot."), | |
0 /* pcszAutoConfirmId */, | |
tr("Close VM"), tr("Continue")); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bool UIMessageCenter::warnAboutVirtNotEnabled64BitsGuest(bool fHWVirtExSupported) | |
{ | |
... | |
else | |
return messageOkCancel(mainWindowShown(), Error, | |
tr("<p>VT-x/AMD-V hardware acceleration is not available on your system. " | |
"Your 64-bit guest will fail to detect a 64-bit CPU and will " | |
"not be able to boot."), | |
0 /* pcszAutoConfirmId */, | |
tr("Close VM"), tr("Continue")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment