diff options
Diffstat (limited to 'src/ui/main_window/MainWindowFileSlotFunction.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowFileSlotFunction.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ui/main_window/MainWindowFileSlotFunction.cpp b/src/ui/main_window/MainWindowFileSlotFunction.cpp index 0b4f7837..25445dcc 100644 --- a/src/ui/main_window/MainWindowFileSlotFunction.cpp +++ b/src/ui/main_window/MainWindowFileSlotFunction.cpp @@ -463,19 +463,16 @@ void MainWindow::slotFileEncryptCustom() { } void MainWindow::slotFileDecryptCustom() { - auto key_ids = mKeyList->getChecked(); new FileEncryptionDialog(mKeyList->getChecked(), FileEncryptionDialog::Decrypt, this); } void MainWindow::slotFileSignCustom() { - auto key_ids = mKeyList->getChecked(); new FileEncryptionDialog(mKeyList->getChecked(), FileEncryptionDialog::Sign, this); } void MainWindow::slotFileVerifyCustom() { - auto key_ids = mKeyList->getChecked(); new FileEncryptionDialog(mKeyList->getChecked(), FileEncryptionDialog::Verify, this); } |