mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Version++, Changed Default DOB Date in Profile
This commit is contained in:
parent
cb0ef55943
commit
d0d7c8d908
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
const int major_version=0;
|
const int major_version=0;
|
||||||
const int minor_version=8;
|
const int minor_version=8;
|
||||||
const int revision_number=4;
|
const int revision_number=5;
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
@ -19,12 +19,20 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) :
|
|||||||
ui->addressEdit->appendPlainText((*profile)["Address"].toString());
|
ui->addressEdit->appendPlainText((*profile)["Address"].toString());
|
||||||
ui->emailEdit->setText((*profile)["EmailAddress"].toString());
|
ui->emailEdit->setText((*profile)["EmailAddress"].toString());
|
||||||
ui->phoneEdit->setText((*profile)["Phone"].toString());
|
ui->phoneEdit->setText((*profile)["Phone"].toString());
|
||||||
bool gender=(*profile)["Gender"].toBool();
|
bool gender;
|
||||||
|
if ((*profile).Exists("Gender")) {
|
||||||
|
gender=(*profile)["Gender"].toBool();
|
||||||
|
} else gender=true; // the true gender.. How sexist.. ;)
|
||||||
|
|
||||||
if (gender) ui->genderMale->setChecked(true); else ui->genderFemale->setChecked(true);
|
if (gender) ui->genderMale->setChecked(true); else ui->genderFemale->setChecked(true);
|
||||||
|
|
||||||
bool ok;
|
bool ok;
|
||||||
ui->heightEdit->setValue((*profile)["Height"].toDouble(&ok));
|
ui->heightEdit->setValue((*profile)["Height"].toDouble(&ok));
|
||||||
ui->dobEdit->setDate((*profile)["DOB"].toDate());
|
if (!(*profile).Exists("DOB")) {
|
||||||
|
ui->dobEdit->setDate(QDate(1970,1,1));
|
||||||
|
} else {
|
||||||
|
ui->dobEdit->setDate((*profile)["DOB"].toDate());
|
||||||
|
}
|
||||||
int i=ui->unitCombo->findText((*profile)["UnitSystem"].toString());
|
int i=ui->unitCombo->findText((*profile)["UnitSystem"].toString());
|
||||||
if (i<0) i=0;
|
if (i<0) i=0;
|
||||||
ui->unitCombo->setCurrentIndex(i);
|
ui->unitCombo->setCurrentIndex(i);
|
||||||
|
Loading…
Reference in New Issue
Block a user