mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Disable architecture choice under OS X (always 64 bits)
This commit is contained in:
parent
09d682a7a3
commit
1598a7a30f
2 changed files with 22 additions and 0 deletions
|
@ -35,17 +35,28 @@ CInstallDialog::CInstallDialog():QDialog()
|
|||
// update default destination
|
||||
onDestinationDefaultButtonClicked();
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
// check whether OS architecture is 32 or 64 bits
|
||||
if (CConfigFile::has64bitsOS())
|
||||
{
|
||||
// 64 bits enbabled by default
|
||||
clientArchGroupBox->setVisible(true);
|
||||
clientArch64RadioButton->setChecked(true);
|
||||
clientArch32RadioButton->setChecked(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
// only 32 bits is available
|
||||
clientArchGroupBox->setVisible(false);
|
||||
clientArch64RadioButton->setChecked(false);
|
||||
clientArch32RadioButton->setChecked(true);
|
||||
}
|
||||
#else
|
||||
// only 64 bits for OS X
|
||||
clientArchGroupBox->setVisible(false);
|
||||
clientArch64RadioButton->setChecked(true);
|
||||
clientArch32RadioButton->setChecked(false);
|
||||
#endif
|
||||
|
||||
const CServer &server = CConfigFile::getInstance()->getServer();
|
||||
|
||||
|
|
|
@ -49,17 +49,28 @@ CMigrateDialog::CMigrateDialog():QDialog()
|
|||
// update default destination
|
||||
onDestinationDefaultButtonClicked();
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
// check whether OS architecture is 32 or 64 bits
|
||||
if (CConfigFile::has64bitsOS())
|
||||
{
|
||||
// 64 bits enbabled by default
|
||||
clientArchGroupBox->setVisible(true);
|
||||
clientArch64RadioButton->setChecked(true);
|
||||
clientArch32RadioButton->setChecked(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
// only 32 bits is available
|
||||
clientArchGroupBox->setVisible(false);
|
||||
clientArch64RadioButton->setChecked(false);
|
||||
clientArch32RadioButton->setChecked(true);
|
||||
}
|
||||
#else
|
||||
// only 64 bits for OS X
|
||||
clientArchGroupBox->setVisible(false);
|
||||
clientArch64RadioButton->setChecked(true);
|
||||
clientArch32RadioButton->setChecked(false);
|
||||
#endif
|
||||
|
||||
const CServer &server = CConfigFile::getInstance()->getServer();
|
||||
|
||||
|
|
Loading…
Reference in a new issue