SSH Agent: Fix wrong slot reference (#1787)

Fixes an error message and non-working functionality introduced by a
wrong slot referenced in PR #1679.
This commit is contained in:
Thomas Luzat 2018-04-05 03:42:14 +02:00 committed by Jonathan White
parent 3a92e4aab9
commit d1c5a1a5f8

View File

@ -281,7 +281,7 @@ void EditEntryWidget::setupSSHAgent()
connect(m_sshAgentUi->decryptButton, SIGNAL(clicked()), SLOT(decryptPrivateKey()));
connect(m_sshAgentUi->copyToClipboardButton, SIGNAL(clicked()), SLOT(copyPublicKey()));
connect(m_advancedUi->attachmentsWidget->entryAttachments(), SIGNAL(modified()), SLOT(updateAttachments()));
connect(m_advancedUi->attachmentsWidget->entryAttachments(), SIGNAL(modified()), SLOT(updateSSHAgentAttachments()));
addPage(tr("SSH Agent"), FilePath::instance()->icon("apps", "utilities-terminal"), m_sshAgentWidget);
}