really?
This commit is contained in:
parent
f896860f75
commit
085d5be953
1 changed files with 4 additions and 1 deletions
|
@ -22,7 +22,10 @@ AuthenticationDetails::AuthenticationDetails(bool only_basic, QWidget* parent) :
|
||||||
|
|
||||||
connect(m_txtUsername->lineEdit(), &BaseLineEdit::textChanged, this, &AuthenticationDetails::onUsernameChanged);
|
connect(m_txtUsername->lineEdit(), &BaseLineEdit::textChanged, this, &AuthenticationDetails::onUsernameChanged);
|
||||||
connect(m_txtPassword->lineEdit(), &BaseLineEdit::textChanged, this, &AuthenticationDetails::onPasswordChanged);
|
connect(m_txtPassword->lineEdit(), &BaseLineEdit::textChanged, this, &AuthenticationDetails::onPasswordChanged);
|
||||||
connect(m_cbAuthType, &QComboBox::currentIndexChanged, this, &AuthenticationDetails::onAuthenticationSwitched);
|
connect(m_cbAuthType,
|
||||||
|
QOverload<int>::of(&QComboBox::currentIndexChanged),
|
||||||
|
this,
|
||||||
|
&AuthenticationDetails::onAuthenticationSwitched);
|
||||||
|
|
||||||
onAuthenticationSwitched();
|
onAuthenticationSwitched();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue