aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmeencryptjob.cpp
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2024-03-13 12:15:41 +0000
committerAndre Heinecke <[email protected]>2024-03-13 12:15:41 +0000
commit67057d83f5bd2ea6238870ed62178cff45a1443f (patch)
treeb2c774ddf6993330610416d34c8da2996a08862c /lang/qt/src/qgpgmeencryptjob.cpp
parentcore: Check STATUS_FAILURE in import operations. (diff)
downloadgpgme-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.cpp2
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