diff options
Diffstat (limited to '')
-rwxr-xr-x | fileencryptiondialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fileencryptiondialog.cpp b/fileencryptiondialog.cpp index 2d8b44d..aee52bb 100755 --- a/fileencryptiondialog.cpp +++ b/fileencryptiondialog.cpp @@ -151,7 +151,7 @@ void FileEncryptionDialog::executeAction() QByteArray *outBuffer = new QByteArray(); if (radioEnc->isChecked()) { - if (! mCtx->encrypt(mKeyList->getSelected(), inBuffer, outBuffer)) return; + if (! mCtx->encrypt(mKeyList->getChecked(), inBuffer, outBuffer)) return; } if (radioDec->isChecked()) { |