aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/details/VerifyDetailsDialog.cpp
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2022-05-20 19:13:55 +0000
committerGitHub <[email protected]>2022-05-20 19:13:55 +0000
commit306cc5b41af9596875c2999af638eaa35899e404 (patch)
tree6d8d5b3cdb35e79527d33c63d4e69995f9c3f2df /src/ui/details/VerifyDetailsDialog.cpp
parentMerge pull request #65 from saturneric/develop-2.0.8 (diff)
parentfix(ui): there is possible null pointer dereference (diff)
downloadGpgFrontend-306cc5b41af9596875c2999af638eaa35899e404.tar.gz
GpgFrontend-306cc5b41af9596875c2999af638eaa35899e404.zip
Merge pull request #66 from saturneric/develop-2.0.8
Develop 2.0.8.2
Diffstat (limited to '')
-rw-r--r--src/ui/details/VerifyDetailsDialog.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ui/details/VerifyDetailsDialog.cpp b/src/ui/details/VerifyDetailsDialog.cpp
index 14407396..d2af4ee1 100644
--- a/src/ui/details/VerifyDetailsDialog.cpp
+++ b/src/ui/details/VerifyDetailsDialog.cpp
@@ -52,10 +52,8 @@ void VerifyDetailsDialog::slot_refresh() {
// Button Box for close button
button_box_ = new QDialogButtonBox(QDialogButtonBox::Close);
- connect(button_box_, &QDialogButtonBox::rejected, this, &VerifyDetailsDialog::close);
-
- mVboxLayout->addWidget(new QLabel(QString::fromStdString(
- std::string(_("Status")) + ": " + gpgme_strerror(error_))));
+ connect(button_box_, &QDialogButtonBox::rejected, this,
+ &VerifyDetailsDialog::close);
auto sign = m_result_->signatures;