From f94e3f2b3cd982f825d5e485834ea9389060adaa Mon Sep 17 00:00:00 2001 From: nils Date: Sun, 7 Feb 2016 14:04:17 +0100 Subject: refactored slots and signals --- verifydetailsdialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'verifydetailsdialog.cpp') diff --git a/verifydetailsdialog.cpp b/verifydetailsdialog.cpp index a8e53e6..ef02b26 100644 --- a/verifydetailsdialog.cpp +++ b/verifydetailsdialog.cpp @@ -29,17 +29,17 @@ VerifyDetailsDialog::VerifyDetailsDialog(QWidget *parent, GpgME::GpgContext* ctx mTextpage = edit; this->setWindowTitle(tr("Signaturedetails")); - connect(mCtx, SIGNAL(keyDBChanged()), this, SLOT(refresh())); + connect(mCtx, SIGNAL(keyDBChanged()), this, SLOT(slotRefresh())); mainLayout = new QHBoxLayout(); this->setLayout(mainLayout); mVbox = new QWidget(); - refresh(); + slotRefresh(); this->exec(); } -void VerifyDetailsDialog::refresh() +void VerifyDetailsDialog::slotRefresh() { mVbox->close(); -- cgit v1.2.3