diff options
Diffstat (limited to 'src/plugins/git/gerrit/authenticationdialog.cpp')
-rw-r--r-- | src/plugins/git/gerrit/authenticationdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gerrit/authenticationdialog.cpp b/src/plugins/git/gerrit/authenticationdialog.cpp index 3dacd0d271..8b96528440 100644 --- a/src/plugins/git/gerrit/authenticationdialog.cpp +++ b/src/plugins/git/gerrit/authenticationdialog.cpp @@ -113,7 +113,7 @@ AuthenticationDialog::AuthenticationDialog(GerritServer *server) m_checkTimer = new QTimer(this); m_checkTimer->setSingleShot(true); connect(m_checkTimer, &QTimer::timeout, this, &AuthenticationDialog::checkCredentials); - connect(m_passwordLineEdit, &QLineEdit::textChanged, [this]() { + connect(m_passwordLineEdit, &QLineEdit::textChanged, this, [this] { if (QGuiApplication::clipboard()->text() == m_passwordLineEdit->text()) { checkCredentials(); return; |