diff options
author | Saturneric <[email protected]> | 2022-01-23 07:26:15 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-23 07:26:15 +0000 |
commit | 6618e827ec8aba22dee519aab77fec345afdb063 (patch) | |
tree | 037a12bc5bb909a56001978de0fdb56d117d397c /src/ui/UserInterfaceUtils.cpp | |
parent | <refactor>(ui): tidy up codes and comments. (diff) | |
download | GpgFrontend-6618e827ec8aba22dee519aab77fec345afdb063.tar.gz GpgFrontend-6618e827ec8aba22dee519aab77fec345afdb063.zip |
<refactor>(ui): tidy up codes and comments.
1. tidy up smtp.
Diffstat (limited to '')
-rw-r--r-- | src/ui/UserInterfaceUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp index be3921a2..b72ee925 100644 --- a/src/ui/UserInterfaceUtils.cpp +++ b/src/ui/UserInterfaceUtils.cpp @@ -56,8 +56,8 @@ void send_an_email(QWidget* parent, InfoBoardWidget* info_board, } if (smtp_enabled) { auto dialog = new SendMailDialog(text, parent); - dialog->setContentEncryption(false); - dialog->setAttachSignature(attach_signature); + dialog->SetContentEncryption(false); + dialog->SetAttachSignature(attach_signature); dialog->show(); } else { QMessageBox::warning(nullptr, _("Function Disabled"), |