mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
More Preferences stuff
This commit is contained in:
parent
f5d737bffe
commit
46fee547d0
@ -91,8 +91,8 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
extern Preferences pref;
|
extern Preferences PREF;
|
||||||
extern Preferences laypref;
|
extern Preferences LAYOUT;
|
||||||
|
|
||||||
#endif // PREFERENCES_H
|
#endif // PREFERENCES_H
|
||||||
|
|
||||||
|
2
main.cpp
2
main.cpp
@ -98,7 +98,7 @@ int main(int argc, char *argv[])
|
|||||||
PREF["VersionString"]=Version;
|
PREF["VersionString"]=Version;
|
||||||
p_profile=Profiles::Get(PREF["Profile"].toString());
|
p_profile=Profiles::Get(PREF["Profile"].toString());
|
||||||
|
|
||||||
//if (!pref.Exists("Profile")) pref["Profile"]=getUserName();
|
//if (!PREF.Exists("Profile")) PREF["Profile"]=getUserName();
|
||||||
|
|
||||||
/*int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
|
/*int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
|
||||||
QStringList ffam=QFontDatabase::applicationFontFamilies(id);
|
QStringList ffam=QFontDatabase::applicationFontFamilies(id);
|
||||||
|
@ -112,7 +112,7 @@ void NewProfile::on_nextButton_clicked()
|
|||||||
prof["DoctorPatientID"]=ui->doctorPatientIDEdit->text();
|
prof["DoctorPatientID"]=ui->doctorPatientIDEdit->text();
|
||||||
|
|
||||||
|
|
||||||
pref["Profile"]=ui->userNameEdit->text();
|
PREF["Profile"]=ui->userNameEdit->text();
|
||||||
|
|
||||||
|
|
||||||
this->accept();
|
this->accept();
|
||||||
|
Loading…
Reference in New Issue
Block a user