diff options
Diffstat (limited to 'verifydetailsdialog.cpp')
-rw-r--r-- | verifydetailsdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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(); |