diff options
author | saturneric <[email protected]> | 2025-02-02 20:03:21 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-02 20:03:21 +0000 |
commit | 39387a78e2e056fa946f92ec7509ef73ad3ecfa3 (patch) | |
tree | ebb8e2376c8a898b13dc862c2b5a8d3c07b6710b /src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp | |
parent | refactor: rewrite subkey generate dialog and fix some issues discovered (diff) | |
download | GpgFrontend-39387a78e2e056fa946f92ec7509ef73ad3ecfa3.tar.gz GpgFrontend-39387a78e2e056fa946f92ec7509ef73ad3ecfa3.zip |
refactor: make some function names shorter
Diffstat (limited to 'src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp')
-rw-r--r-- | src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp b/src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp index 0c4d30c4..c284290f 100644 --- a/src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp +++ b/src/ui/dialog/key_generate/SubkeyGenerateDialog.cpp @@ -98,13 +98,13 @@ void SubkeyGenerateDialog::set_signal_slot_config() { }); connect(ui_->encrCheckBox, &QCheckBox::stateChanged, this, [this](int state) { - gen_subkey_info_->SetAllowEncryption(state == Qt::Checked); + gen_subkey_info_->SetAllowEncr(state == Qt::Checked); }); connect(ui_->signCheckBox, &QCheckBox::stateChanged, this, [this](int state) { - gen_subkey_info_->SetAllowSigning(state == Qt::Checked); + gen_subkey_info_->SetAllowSign(state == Qt::Checked); }); connect(ui_->authCheckBox, &QCheckBox::stateChanged, this, [this](int state) { - gen_subkey_info_->SetAllowAuthentication(state == Qt::Checked); + gen_subkey_info_->SetAllowAuth(state == Qt::Checked); }); connect(ui_->algoComboBox, &QComboBox::currentTextChanged, this, @@ -145,19 +145,18 @@ void SubkeyGenerateDialog::refresh_widgets_state() { ui_->keyLengthComboBox->blockSignals(false); ui_->encrCheckBox->blockSignals(true); - ui_->encrCheckBox->setChecked(gen_subkey_info_->IsAllowEncryption()); - ui_->encrCheckBox->setEnabled(gen_subkey_info_->IsAllowChangeEncryption()); + ui_->encrCheckBox->setChecked(gen_subkey_info_->IsAllowEncr()); + ui_->encrCheckBox->setEnabled(gen_subkey_info_->IsAllowModifyEncr()); ui_->encrCheckBox->blockSignals(false); ui_->signCheckBox->blockSignals(true); - ui_->signCheckBox->setChecked(gen_subkey_info_->IsAllowSigning()); - ui_->signCheckBox->setEnabled(gen_subkey_info_->IsAllowChangeSigning()); + ui_->signCheckBox->setChecked(gen_subkey_info_->IsAllowSign()); + ui_->signCheckBox->setEnabled(gen_subkey_info_->IsAllowModifySign()); ui_->signCheckBox->blockSignals(false); ui_->authCheckBox->blockSignals(true); - ui_->authCheckBox->setChecked(gen_subkey_info_->IsAllowAuthentication()); - ui_->authCheckBox->setEnabled( - gen_subkey_info_->IsAllowChangeAuthentication()); + ui_->authCheckBox->setChecked(gen_subkey_info_->IsAllowAuth()); + ui_->authCheckBox->setEnabled(gen_subkey_info_->IsAllowModifyAuth()); ui_->authCheckBox->blockSignals(false); ui_->nonPassphraseCheckBox->setEnabled( |