diff options
author | Andre Heinecke <[email protected]> | 2024-03-13 12:15:41 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2024-03-13 12:15:41 +0000 |
commit | 67057d83f5bd2ea6238870ed62178cff45a1443f (patch) | |
tree | b2c774ddf6993330610416d34c8da2996a08862c /lang/qt/src/qgpgmeencryptjob.cpp | |
parent | core: Check STATUS_FAILURE in import operations. (diff) | |
download | gpgme-67057d83f5bd2ea6238870ed62178cff45a1443f.tar.gz gpgme-67057d83f5bd2ea6238870ed62178cff45a1443f.zip |
Qt: Fix windows build of new jobs
--
See git log for changes.
Diffstat (limited to 'lang/qt/src/qgpgmeencryptjob.cpp')
-rw-r--r-- | lang/qt/src/qgpgmeencryptjob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/qgpgmeencryptjob.cpp b/lang/qt/src/qgpgmeencryptjob.cpp index 213c88c7..f8c71f6b 100644 --- a/lang/qt/src/qgpgmeencryptjob.cpp +++ b/lang/qt/src/qgpgmeencryptjob.cpp @@ -172,7 +172,7 @@ static QGpgMEEncryptJob::result_type encrypt_to_filename(Context *ctx, { Data indata; #ifdef Q_OS_WIN - indata.setFileName(inputFilePath().toUtf8().constData()); + indata.setFileName(inputFilePath.toUtf8().constData()); #else indata.setFileName(QFile::encodeName(inputFilePath).constData()); #endif |