diff options
author | Saturneric <[email protected]> | 2021-08-23 09:48:21 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-23 09:48:21 +0000 |
commit | 03d37859e3e6c644085fb56c86c126536525d721 (patch) | |
tree | b0d01772a97095191405a1c7c682ac35e4bdf5a0 /src/ui/FileEncryptionDialog.cpp | |
parent | Improve the automatic key exchange function; fix some known problems; (diff) | |
download | GpgFrontend-03d37859e3e6c644085fb56c86c126536525d721.tar.gz GpgFrontend-03d37859e3e6c644085fb56c86c126536525d721.zip |
Fix some problems; Ready to release a BETA version
Diffstat (limited to 'src/ui/FileEncryptionDialog.cpp')
-rwxr-xr-x | src/ui/FileEncryptionDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/FileEncryptionDialog.cpp b/src/ui/FileEncryptionDialog.cpp index d9bc7ce2..23ec0b2a 100755 --- a/src/ui/FileEncryptionDialog.cpp +++ b/src/ui/FileEncryptionDialog.cpp @@ -229,7 +229,7 @@ void FileEncryptionDialog::slotExecuteAction() { if (mAction == Sign) { qDebug() << "Action Sign"; - gpgme_error_t err = mCtx->sign(keys, inBuffer, outBuffer, GPGME_SIG_MODE_DETACH); + gpgme_error_t err = mCtx->sign(keys, inBuffer, outBuffer, GPGME_SIG_MODE_DETACH, nullptr); if (gpgme_err_code(err) != GPG_ERR_NO_ERROR) { qDebug() << "Error" << gpgme_strerror(err); QMessageBox::warning(this, tr("Error"), |