Merge with develop

This commit is contained in:
kervala 2016-10-11 18:43:07 +02:00
parent ad26721df6
commit 975a8f2d53
2 changed files with 11 additions and 11 deletions

View file

@ -36,6 +36,11 @@ CInstallDialog::CInstallDialog():QDialog()
onDestinationDefaultButtonClicked();
#ifdef Q_OS_MAC
// only 64 bits for OS X
clientArchGroupBox->setVisible(false);
clientArch64RadioButton->setChecked(true);
clientArch32RadioButton->setChecked(false);
#else
// check whether OS architecture is 32 or 64 bits
if (CConfigFile::has64bitsOS())
{
@ -50,12 +55,7 @@ CInstallDialog::CInstallDialog():QDialog()
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();

View file

@ -50,6 +50,11 @@ CMigrateDialog::CMigrateDialog():QDialog()
onDestinationDefaultButtonClicked();
#ifdef Q_OS_MAC
// only 64 bits for OS X
clientArchGroupBox->setVisible(false);
clientArch64RadioButton->setChecked(true);
clientArch32RadioButton->setChecked(false);
#else
// check whether OS architecture is 32 or 64 bits
if (CConfigFile::has64bitsOS())
{
@ -65,11 +70,6 @@ CMigrateDialog::CMigrateDialog():QDialog()
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();