Code clean, and code style error fix.
This commit is contained in:
@@ -71,16 +71,16 @@ GeneralForm::GeneralForm(QWidget* parent) : QWidget(parent)
|
||||
lockTime->setText(JsonObject::Instance()->lockScreenTimeout());
|
||||
|
||||
//connection
|
||||
connect(instName, &QLineEdit::textChanged, [=](QString str)
|
||||
connect(instName, &QLineEdit::textChanged, [=](const QString& str)
|
||||
{
|
||||
JsonObject::Instance()->setInstitutionName(str);
|
||||
});
|
||||
|
||||
connect(instAddr, &QLineEdit::textChanged, [=](QString str)
|
||||
connect(instAddr, &QLineEdit::textChanged, [=](const QString& str)
|
||||
{
|
||||
JsonObject::Instance()->setInstitutionAddr(str);
|
||||
});
|
||||
connect(lockTime, &QLineEdit::textChanged, [=](QString str)
|
||||
connect(lockTime, &QLineEdit::textChanged, [=](const QString& str)
|
||||
{
|
||||
//take effect
|
||||
JsonObject::Instance()->setLockScreenTimeout(str);
|
||||
|
||||
Reference in New Issue
Block a user