diff options
author | Saturneric <[email protected]> | 2021-12-13 16:43:17 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-13 16:43:17 +0000 |
commit | 71bec7d8b0715bfc2ac953ef8051c96fa27c0682 (patch) | |
tree | dccc073271c4165f375783ed95aa839099a19e60 /src/ui/main_window/MainWindowFileSlotFunction.cpp | |
parent | Merge pull request #31 from saturneric/develop-ui (diff) | |
download | GpgFrontend-71bec7d8b0715bfc2ac953ef8051c96fa27c0682.tar.gz GpgFrontend-71bec7d8b0715bfc2ac953ef8051c96fa27c0682.zip |
Improve UI & Fixed.
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/MainWindowFileSlotFunction.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/ui/main_window/MainWindowFileSlotFunction.cpp b/src/ui/main_window/MainWindowFileSlotFunction.cpp index 133a7820..535f47af 100644 --- a/src/ui/main_window/MainWindowFileSlotFunction.cpp +++ b/src/ui/main_window/MainWindowFileSlotFunction.cpp @@ -450,24 +450,4 @@ void MainWindow::slotFileDecryptVerify() { } } -void MainWindow::slotFileEncryptCustom() { - new FileEncryptionDialog(mKeyList->getChecked(), - FileEncryptionDialog::Encrypt, this); -} - -void MainWindow::slotFileDecryptCustom() { - new FileEncryptionDialog(mKeyList->getChecked(), - FileEncryptionDialog::Decrypt, this); -} - -void MainWindow::slotFileSignCustom() { - new FileEncryptionDialog(mKeyList->getChecked(), FileEncryptionDialog::Sign, - this); -} - -void MainWindow::slotFileVerifyCustom() { - new FileEncryptionDialog(mKeyList->getChecked(), FileEncryptionDialog::Verify, - this); -} - } // namespace GpgFrontend::UI |