aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/ExportKeyPackageDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/widgets/ExportKeyPackageDialog.cpp')
-rw-r--r--src/ui/widgets/ExportKeyPackageDialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widgets/ExportKeyPackageDialog.cpp b/src/ui/widgets/ExportKeyPackageDialog.cpp
index 04d576ad..77e490f4 100644
--- a/src/ui/widgets/ExportKeyPackageDialog.cpp
+++ b/src/ui/widgets/ExportKeyPackageDialog.cpp
@@ -60,7 +60,7 @@ GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog(
write_buffer_to_file(file_name.toStdString(), passphrase_);
});
- connect(ui->buttonBox, &QDialogButtonBox::accepted, this, [=]() {
+ connect(ui->button_box_, &QDialogButtonBox::accepted, this, [=]() {
if (ui->outputPathLabel->text().isEmpty()) {
QMessageBox::critical(
this, _("Forbidden"),
@@ -121,7 +121,7 @@ GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog(
"</b>");
});
- connect(ui->buttonBox, &QDialogButtonBox::rejected, this,
+ connect(ui->button_box_, &QDialogButtonBox::rejected, this,
[=]() { this->close(); });
ui->nameLabel->setText(_("Key Package Name"));