Version++, Changed Default DOB Date in Profile

This commit is contained in:
Mark Watkins 2011-09-11 02:42:45 +10:00
parent cb0ef55943
commit d0d7c8d908
2 changed files with 11 additions and 3 deletions

View File

@ -18,7 +18,7 @@
const int major_version=0;
const int minor_version=8;
const int revision_number=4;
const int revision_number=5;
namespace Ui {
class MainWindow;

View File

@ -19,12 +19,20 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) :
ui->addressEdit->appendPlainText((*profile)["Address"].toString());
ui->emailEdit->setText((*profile)["EmailAddress"].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);
bool 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());
if (i<0) i=0;
ui->unitCombo->setCurrentIndex(i);