diff options
author | Saturneric <[email protected]> | 2022-05-19 19:03:27 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-19 19:03:42 +0000 |
commit | ef25178144232d7363bac6dd63c0bf9878da02a5 (patch) | |
tree | 936a3f4b8ea338ed845a2c5ffe961dafc707aa8e /src/ui/details/VerifyDetailsDialog.cpp | |
parent | fix: adjust initialized order and organize (diff) | |
download | GpgFrontend-ef25178144232d7363bac6dd63c0bf9878da02a5.tar.gz GpgFrontend-ef25178144232d7363bac6dd63c0bf9878da02a5.zip |
fix: solve general problems for compiling
Diffstat (limited to 'src/ui/details/VerifyDetailsDialog.cpp')
-rw-r--r-- | src/ui/details/VerifyDetailsDialog.cpp | 6 |
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; |