aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmesignencryptjob.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/qgpgmesignencryptjob.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/qgpgmesignencryptjob.cpp')
-rw-r--r--lang/qt/src/qgpgmesignencryptjob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/qgpgmesignencryptjob.cpp b/lang/qt/src/qgpgmesignencryptjob.cpp
index 45734d8e..8b919d86 100644
--- a/lang/qt/src/qgpgmesignencryptjob.cpp
+++ b/lang/qt/src/qgpgmesignencryptjob.cpp
@@ -176,7 +176,7 @@ static QGpgMESignEncryptJob::result_type sign_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